@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --gold: #B8860B;
  --navy: #1E3A8A;
  --light-blue: #DBEEFF;
  --white: #FFFFFF;
  --dark-grey: #333333;
  --grey-medium: #666666;
  --grey-light: #F5F5F5;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  --transition-smooth: 0.3s ease;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  transition: top 0.3s;
}

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

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-grey);
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-smooth);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-right {
  display: none;
  align-items: center;
  gap: 24px;
}

.phone-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.phone-link:hover {
  color: var(--gold);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--light-blue);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 100px 30px 40px;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  padding: 10px 0;
  transition: color var(--transition-smooth);
}

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

.mobile-nav .phone-mobile {
  margin-top: 30px;
  font-size: 18px;
}

.mobile-nav .cta-mobile {
  display: inline-block;
  margin-top: 20px;
}

.mobile-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close-btn::before,
.mobile-close-btn::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

.mobile-close-btn::before {
  transform: rotate(45deg);
}

.mobile-close-btn::after {
  transform: rotate(-45deg);
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: #365DCC;
  border-color: var(--gold);
  color: var(--white);
}

.btn-primary:active {
  transform: scale(0.98);
  background: #15296b;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: none;
  border-bottom: 2px solid var(--navy);
  padding: 8px 0;
  border-radius: 0;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #9a7209;
  border-color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #15296b 100%);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-tagline {
  font-size: 22px;
  color: var(--light-blue);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero-tagline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline.animate .word {
  animation: revealWord 0.5s ease forwards;
}

@keyframes revealWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero .btn-primary {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-light-blue {
  background: var(--light-blue);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2 {
  color: var(--white);
}

.section-title {
  font-size: 36px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-50px);
}

.section-subtitle {
  font-size: 18px;
  color: var(--grey-medium);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-title.visible {
  animation: slideInLeft 0.6s ease forwards;
}

.section-title.slide-right {
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   INTRO MESSAGE
   ============================================ */
.intro-message {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-message h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 24px;
}

.intro-message p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark-grey);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.why-choose-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.why-choose-card svg {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  color: var(--navy);
}

.why-choose-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}

.why-choose-card p {
  font-size: 16px;
  color: var(--grey-medium);
  line-height: 1.7;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--gold);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: blur(3px);
  transition: filter 0.5s ease;
}

.service-card:hover img {
  filter: blur(0);
}

.service-card-content {
  padding: 24px;
}

.service-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--grey-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 40px;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-quote {
  font-size: 24px;
  font-style: italic;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-role {
  font-size: 14px;
  color: var(--grey-medium);
  margin-top: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
  opacity: 1;
  background: var(--gold);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-timeline {
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--navy);
  transform: translateX(-50%);
  z-index: 0;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.process-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.process-step h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--grey-medium);
  max-width: 280px;
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #15296b 100%);
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: var(--light-blue);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RESOURCES
   ============================================ */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.resource-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--gold);
}

.resource-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 15px;
  color: var(--grey-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.resource-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-blue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-item p {
  font-size: 15px;
  color: var(--grey-medium);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.contact-form h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-grey);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  transform: translateY(-24px);
  font-size: 12px;
  color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--light-blue);
  line-height: 1.6;
}

.footer h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--light-blue);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  font-size: 14px;
  color: var(--light-blue);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--light-blue);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

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

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

/* ============================================
   PAGE HERO BANNERS
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/generated_image_3_services_overview.png') center/cover;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--light-blue);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BIO SECTION
   ============================================ */
.bio-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.bio-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.bio-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 24px;
}

.bio-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-bottom: 16px;
}

.bio-content .kuya-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  border-bottom: 1px dashed var(--gold);
}

.bio-content .kuya-tooltip::after {
  content: "Your trusted 'kuya' (elder brother) in immigration law";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.bio-content .kuya-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 8px);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.value-card svg {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--grey-medium);
  line-height: 1.6;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header h3 {
  font-size: 18px;
  color: var(--navy);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
  background: var(--light-blue);
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--grey-medium);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.testimonial-card.featured {
  border-left: 4px solid var(--gold);
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--dark-grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card cite {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

.testimonial-card .case-type {
  font-size: 13px;
  color: var(--grey-medium);
  margin-top: 4px;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.map-container svg {
  width: 60px;
  height: 60px;
  color: var(--navy);
  opacity: 0.5;
}

.map-directions {
  text-align: center;
}

.map-directions p {
  font-size: 15px;
  color: var(--grey-medium);
}

/* ============================================
   EXTERNAL LINKS
   ============================================ */
.external-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.external-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.external-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.external-link svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.external-link h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.external-link p {
  font-size: 14px;
  color: var(--grey-medium);
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.differentiators {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 40px;
}

.differentiators ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.differentiators li {
  display: flex;
  gap: 16px;
}

.differentiators li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
}

.differentiators h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.differentiators p {
  font-size: 15px;
  color: var(--grey-medium);
  line-height: 1.6;
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-content {
  animation: pageIn 0.5s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero h1,
  .hero-tagline,
  .hero .btn-primary {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .section-title {
    opacity: 1;
    transform: none;
  }
  
  .service-card img {
    filter: blur(0);
  }
}

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */
@media (min-width: 768px) {
  .header-inner {
    height: 75px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .hero-tagline {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 42px;
  }
  
  .why-choose-grid,
  .services-grid,
  .resources-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .contact-split {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bio-split {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .external-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE STYLES - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .header-inner {
    height: 80px;
    padding: 0 60px;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  .hero-content {
    padding: 100px 60px 80px;
  }
  
  .hero h1 {
    font-size: 72px;
  }
  
  .section-title {
    font-size: 48px;
  }
  
  section {
    padding: 100px 0;
  }
  
  .why-choose-grid,
  .services-grid,
  .resources-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .process-step::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .page-hero {
    padding: 180px 0 100px;
  }
  
  .page-hero h1 {
    font-size: 56px;
  }
  
  .intro-message h2 {
    font-size: 44px;
  }
  
  .differentiators ul {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .external-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   MOBILE HEADER
   ============================================ */
@media (max-width: 1023px) {
  .nav-desktop,
  .header-right .btn-primary {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}
