:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #b38a58;
  --secondary-light: #c9a87a;
  --accent: #e63946;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --dark: #212529;
  --dark-gray: #495057;

  --font-heading: "Playfair Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
}
/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.primary-navigation ul {
  display: flex;
  gap: 2rem;
}

.primary-navigation a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
}

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

.primary-navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.primary-navigation a.active::after,
.primary-navigation a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger .line:first-child {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger .line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger .line:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 0.8rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  animation: bounce 2s infinite;
  z-index: 2;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  margin-top: 0.5rem;
}

.wheel {
  width: 5px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: scroll 2s infinite;
}

/* Stats Bar */
.stats-bar {
  background-color: white;
  padding: 2rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: -2rem;
  border-radius: var(--border-radius-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background-color: var(--light-gray);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(179, 138, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1.2rem;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.image-wrapper:hover {
  transform: perspective(1000px) rotateY(0);
}

.experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--box-shadow);
  z-index: 2;
  animation: pulse 2s infinite;
}

.experience-badge span:first-child {
  font-size: 1.8rem;
  line-height: 1;
}

.experience-badge span:last-child {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
}

/* ===== PRACTICE AREAS ===== */
.practice-areas {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
}

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

.practice-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.practice-card:hover::before {
  height: 10px;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(179, 138, 88, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.practice-card:hover .card-icon {
  background-color: var(--secondary);
  color: white;
}

.card-icon img {
  width: 40px;
  height: 40px;
  transition: var(--transition);
}

.practice-card:hover .card-icon img {
  filter: brightness(0) invert(1);
}

.practice-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  transition: var(--transition);
}

.card-link i {
  transition: var(--transition-fast);
}

.practice-card:hover .card-link {
  color: var(--secondary-light);
}

.practice-card:hover .card-link i {
  transform: translateX(3px);
}

/* ===== TEAM HIGHLIGHTS ===== */
.team-highlights {
  padding: 6rem 0;
  background-color: white;
  position: relative;
}

.team-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}

.team-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 1rem;
}

.team-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  min-width: 300px;
  flex: 0 0 calc(33.333% - 2rem);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  transition: var(--transition);
}

.team-card:hover .team-social {
  bottom: 20px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--secondary);
  color: white;
}

.team-content {
  padding: 2rem 1.5rem;
}

.team-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.4rem;
}

.position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.bio {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--light-gray);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== CASE RESULTS ===== */
.case-results {
  padding: 6rem 0;
  background-color: var(--light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.result-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.result-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.result-card h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.result-details {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.result-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: var(--medium-gray);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: white;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 1rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  min-width: 500px;
  flex: 0 0 calc(50% - 2rem);
}

.testimonial-rating {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info cite {
  font-style: normal;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.client-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonial-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.testimonial-cta a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-cta a:hover {
  color: var(--secondary);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  padding: 6rem 0;
  background-color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.blog-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.blog-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 0.8rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-content h3 a {
  color: var(--dark);
  transition: var(--transition-fast);
}

.blog-content h3 a:hover {
  color: var(--primary);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--secondary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.read-more i {
  transition: var(--transition-fast);
}

.blog-card:hover .read-more {
  color: var(--secondary-light);
}

.blog-card:hover .read-more i {
  transform: translateX(3px);
}

/* ===== AWARDS ===== */
.awards {
  padding: 5rem 0;
  background-color: var(--light);
}

.awards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.award-item {
  text-align: center;
  flex: 0 1 150px;
  transition: var(--transition);
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-item img {
  height: 80px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}

.award-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.award-item p {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.award-item span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
  background-color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.faq-accordion {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.faq-item[open] {
  padding-bottom: 1rem;
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::marker,
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1rem;
  color: var(--dark-gray);
  animation: fadeIn 0.3s ease-out;
}

.faq-answer ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.faq-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
/* ===== SIMPLE FOOTER ===== */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-heading);
}

.footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: var(--box-shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .team-card,
  .testimonial {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 992px) {
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .faq-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .team-card,
  .testimonial {
    flex: 0 0 calc(100% - 2rem);
    min-width: auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    flex-direction: column;
    justify-content: center;
  }

  .primary-navigation[data-visible="true"] {
    transform: translateX(0);
  }

  .primary-navigation ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .primary-navigation a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .practice-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
  }
}
