/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a365d;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

a {
  color: #c53030;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #a02626;
}

/* Navigation - Always Visible, No Animations */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1a365d;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: clamp(0.5rem, 2vw, 0.7rem);
  color: #c53030;
  font-weight: 400;
  margin-top: -2px;
}

/* Always Visible Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}


.nav-link {
  text-decoration: none;
  color: #1a365d;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  display: block;
  text-align: center;
  min-width: 60px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #fbeaea;
  color: #c53030;
}

.nav-link.active {
  background-color: #c53030;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 48, 48, 0.2);
}


.nav-link:hover {
  color: #c53030;
  background: rgba(197, 48, 48, 0.1);
}

.nav-link.active {
  color: white;
  background: #c53030;
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  
.nav-link {
  text-decoration: none;
  color: #1a365d;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  display: block;
  text-align: center;
  min-width: 60px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #fbeaea;
  color: #c53030;
}

.nav-link.active {
  background-color: #c53030;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 48, 48, 0.2);
}


  .logo-main {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  
.nav-link {
  text-decoration: none;
  color: #1a365d;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  display: block;
  text-align: center;
  min-width: 60px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #fbeaea;
  color: #c53030;
}

.nav-link.active {
  background-color: #c53030;
  color: #fff;
  box-shadow: 0 4px 12px rgba(197, 48, 48, 0.2);
}


  .nav-container {
    padding: 0.8rem;
  }
}

/* Buttons - No Animations */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.btn:focus {
  outline: 2px solid #c53030;
  outline-offset: 2px;
}

.btn-primary {
  background: #c53030;
  color: white;
  border: 2px solid #c53030;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #a02626;
  border-color: #a02626;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #1a365d;
  border: 2px solid #1a365d;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #1a365d;
  color: white;
}

.btn-emergency {
  background: #e53e3e;
  color: white;
  font-size: 1.1rem;
  padding: 15px 30px;
  margin: 0.5rem;
  border: 2px solid #e53e3e;
}

.btn-emergency:hover,
.btn-emergency:focus {
  background: #c53030;
  border-color: #c53030;
  color: white;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 140px 2rem 2rem;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #1a365d;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #c53030;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #4a5568;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: white;
  text-align: center;
  padding: 180px 2rem 80px;
}

.page-header h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #e2e8f0;
}

/* Features Section */
.features {
  padding: 80px 2rem;
  background: white;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

/* Stats Section */
.stats {
  padding: 80px 2rem;
  background: #1a365d;
  color: white;
}

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

.stat-item h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #c53030;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #e2e8f0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Attorneys Section */
.attorneys-preview {
  padding: 80px 2rem;
  background: #f7fafc;
}

.attorneys-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.attorney-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.attorney-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.attorney-card img {
  width: 100%;
  max-width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.attorney-card h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.attorney-card .title {
  color: #c53030;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Preview */
.contact-preview {
  padding: 80px 2rem;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item strong {
  color: #1a365d;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Page */
.services-overview {
  padding: 60px 2rem;
  background: white;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid-section {
  padding: 60px 2rem;
  background: #f7fafc;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3rem;
  display: block;
}

.service-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.service-card li {
  padding: 0.3rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  color: #c53030;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background: #c53030;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #c53030;
}

.service-btn:hover,
.service-btn:focus {
  background: #a02626;
  border-color: #a02626;
  color: white;
}

/* About Page */
.about-content {
  padding: 60px 2rem;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.about-text h3 {
  color: #1a365d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.values-list li {
  padding: 0.5rem 0;
  color: #4a5568;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* International Presence Section */
.international-presence {
  padding: 80px 2rem;
  background: #f7fafc;
}

.international-presence h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a365d;
}

.international-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.country-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.country-card.active {
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.country-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.country-flag {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  display: block;
}

.country-card h3 {
  color: #1a365d;
  text-align: center;
  margin-bottom: 0.5rem;
}

.country-status {
  text-align: center;
  color: #c53030;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.country-card ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.country-card li {
  padding: 0.3rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 2rem;
}

.country-card li::before {
  content: "⚖️";
  position: absolute;
  left: 0;
  margin-right: 0.5rem;
}

/* Office Info Section */
.office-info {
  padding: 60px 2rem;
  background: white;
}

.offices-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.office-tab {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #1a365d;
  color: #1a365d;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.office-tab.active,
.office-tab:hover,
.office-tab:focus {
  background: #1a365d;
  color: white;
  outline: none;
}

.office-tab:focus-visible {
  outline: 2px solid #c53030;
  outline-offset: 2px;
}

.office-content {
  position: relative;
}

.office-details {
  display: none;
  opacity: 0;
}

.office-details.active {
  display: block;
  opacity: 1;
}

.office-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.office-features ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.office-features li {
  padding: 0.3rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.office-features li::before {
  content: "•";
  color: #c53030;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.office-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Attorneys Page */
.attorneys-section {
  padding: 60px 2rem;
  background: white;
}

.attorneys-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.attorneys-detailed {
  max-width: 1000px;
  margin: 0 auto;
}

.attorney-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: #f7fafc;
  border-radius: 10px;
}

.attorney-profile:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.attorney-profile:nth-child(even) .attorney-image {
  order: 2;
}

.attorney-profile:nth-child(even) .attorney-info {
  order: 1;
}

.attorney-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.attorney-title {
  color: #c53030;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.attorney-details {
  background: white;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.attorney-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.attorney-bio h4,
.practice-areas h4 {
  color: #1a365d;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.practice-areas ul {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
}

.practice-areas li {
  padding: 0.2rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 2rem;
}

.practice-areas li::before {
  content: "⚖️";
  position: absolute;
  left: 0;
  margin-right: 0.5rem;
}

.associate-attorneys {
  margin-top: 4rem;
}

.associate-attorneys h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.associate-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.associate-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.associate-card img {
  width: 100%;
  max-width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.associate-title {
  color: #c53030;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.associate-specialty {
  color: #1a365d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-cta {
  padding: 60px 2rem;
  background: #1a365d;
  color: white;
  text-align: center;
}

.team-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.team-cta p {
  color: #e2e8f0;
  margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
  padding: 60px 2rem;
  background: white;
}

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

.contact-info h2 {
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 10px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-text h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-text p {
  margin-bottom: 0.3rem;
}

.contact-text a {
  color: #c53030;
  text-decoration: none;
  font-weight: 600;
}

.contact-text a:hover,
.contact-text a:focus {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 10px;
}

.contact-form h2 {
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a365d;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.form-help {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 0.25rem;
}

.error-message {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.form-note {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #856404;
}

/* Emergency Contact */
.emergency-contact {
  padding: 60px 2rem;
  background: #c53030;
  color: white;
  text-align: center;
}

.emergency-info h2 {
  color: white;
  margin-bottom: 1rem;
}

.emergency-info p {
  color: #fed7d7;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.emergency-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Consultation CTA */
.consultation-cta {
  padding: 60px 2rem;
  background: #1a365d;
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

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

/* Footer */
footer {
  background: #1a365d;
  color: white;
  padding: 40px 2rem 20px;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: #c53030;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
}

.footer-bottom p {
  color: #a0aec0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 160px 1rem 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .attorney-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .attorney-profile:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .attorney-profile:nth-child(even) .attorney-image,
  .attorney-profile:nth-child(even) .attorney-info {
    order: unset;
  }

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

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

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

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

  .cta-buttons,
  .emergency-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .offices-tabs {
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .emergency-buttons .btn-emergency {
    width: 100%;
    margin: 0.25rem 0;
  }

  .cta-buttons .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}


@media (max-width: 480px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}
