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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  padding-top: 90px;
  background: #f5f5f5;
}

/* === FIXED HEADER === */
header {
  background: #ffffff;
  color: #081a2c;
  padding: 8px 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  min-height: 90px;
  max-height: 90px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #081a2c;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #081a2c;
}

/* Hamburger Menu - Hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 9999;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #081a2c;
  border-radius: 3px;
  transition: 0.3s;
}

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

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

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

/* Navigation Menu - Visible on desktop */
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #081a2c;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f0c040;
}

.phone {
  font-weight: bold;
  color: #f0c040;
  font-size: 15px;
  flex-shrink: 0;
}

/* Schedule Button Wrapper */
.schedule-wrapper {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
}

/* Schedule Button */
.schedule-btn {
  padding: 18px 50px;
  background: #f0c040;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #081a2c;
  cursor: pointer;
  transition: all 0.3s;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

.schedule-btn:hover {
  background: #081a2c;
  color: #fff;
  transform: scale(1.05);
}

/* HERO - Full image, properly positioned below header */
.hero {
  height: calc(100vh - 90px);
  min-height: 500px;
  background: url('../img/man.jpeg') center/cover no-repeat;
  position: relative;
  margin-top: 0;
  padding-top: 0;
  top: 0;
}

/* OVERLAY - Text at BOTTOM LEFT of the image */
.overlay {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 8% 8% 8%;
  color: #fff;
}

/* Hero Content Wrapper */
.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.hero-content button {
  padding: 15px 40px;
  background: #f0c040;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #081a2c;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-content button:hover {
  background: #fff;
  transform: scale(1.05);
}

/* HERO TOP RIGHT - PRIVATE SOLICITOR Badge */
.hero-text-top {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 10;
  font-family: Arial, sans-serif;
  background: #081a2c;
  color: #f0c040;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #f0c040;
  white-space: nowrap;
}

/* HERO PRACTICE AREAS - Button-style pills */
.hero-practice-list {
  position: absolute;
  top: 82px;
  right: 40px;
  z-index: 10;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-practice-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-practice-list ul li {
  font-size: 13px;
  font-weight: 700;
  color: #081a2c;
  background: #f0c040;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 15px rgba(240, 192, 64, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.hero-practice-list ul li:hover {
  transform: translateX(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(240, 192, 64, 0.5);
  background: #ffffff;
  color: #081a2c;
}

/* FLOATING ICONS - WhatsApp, Email & Call */
.floating-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.floating-icon a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-icon a span {
  font-size: 28px;
  line-height: 1;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 32px;
}

.call-btn {
  background: #081a2c;
}

.call-btn span {
  font-size: 28px;
}

/* Floating Email Button */
.email-btn {
  background: #D44638;
}

.email-btn i {
  color: #fff;
  font-size: 28px;
}

.floating-icon .email-btn {
  animation: pulse-email 2s infinite 0.3s;
}

@keyframes pulse-email {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 70, 56, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 70, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 70, 56, 0);
  }
}

/* Mobile adjustments for email button */
@media (max-width: 768px) {
  .email-btn i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .email-btn i {
    font-size: 18px;
  }
}

.floating-icon a::after {
  content: attr(title);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.floating-icon a:hover::after {
  opacity: 1;
  visibility: visible;
}

.floating-icon .whatsapp-btn {
  animation: pulse-whatsapp 2s infinite;
}

.floating-icon .call-btn {
  animation: pulse-call 2s infinite 0.5s;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 26, 44, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(8, 26, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 26, 44, 0);
  }
}

/* SECTIONS - Light Theme */
section {
  padding: 70px 8%;
  background: #ffffff;
}

h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #081a2c;
}

/* AWARDS SECTION */
.awards {
  background: #f8f9fa;
  padding: 70px 8%;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.award-img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}

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

/* OFFICE DIVIDER */
.office-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #f0c040, transparent);
  margin: 0 auto 40px auto;
  max-width: 200px;
}

/* OFFICE CONTENT */
.office-content {
  max-width: 850px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.office-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  padding: 0 20px;
  letter-spacing: 0.5px;
}

.highlight-text {
  color: #081a2c;
  font-weight: bold;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f0c040;
  border-radius: 2px;
}

/* OFFICES - 2 items */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.office-card {
  background: #fff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e0e0;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.office-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.office-card h3 {
  color: #081a2c;
  margin-bottom: 5px;
  font-size: 20px;
}

.office-card p {
  color: #666;
  font-size: 14px;
}

/* PRACTICE AREAS SECTION */
.practice-section {
  background: #f8f9fa;
}

.practice-main-title {
  font-size: 42px;
  font-weight: bold;
  color: #081a2c;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.practice-sub-title {
  font-size: 22px;
  font-weight: normal;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.practice-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.practice-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.practice-label {
  padding: 15px 15px 18px 15px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #081a2c;
  text-align: center;
  letter-spacing: 0.5px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* SETTLEMENTS SECTION */
.settlements-section {
  background: #ffffff;
}

.settlement-main-title {
  font-size: 42px;
  font-weight: bold;
  color: #081a2c;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.settlement-sub-title {
  font-size: 22px;
  font-weight: normal;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300;
}

.settlements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.settlement-card {
  background: #f8f9fa;
  padding: 30px 25px 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.settlement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.settlement-card .amount {
  font-size: 32px;
  font-weight: bold;
  color: #081a2c;
  margin-bottom: 8px;
}

.settlement-card .case-type {
  font-size: 16px;
  font-weight: 600;
  color: #f0c040;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.settlement-card .case-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonial-section {
  position: relative;
  padding: 80px 8%;
  overflow: hidden;
  background: url('../img/handshake.jpg') center/cover no-repeat;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
}

.testimonial-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-main-title {
  font-size: 42px;
  font-weight: bold;
  color: #081a2c;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.testimonial-sub-title {
  font-size: 22px;
  font-weight: 300;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 1px;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-card {
  flex: 0 0 50%;
  padding: 0 60px;
  text-align: left;
  position: relative;
}

.quote {
  font-size: 170px;
  color: #d7d7d7;
  line-height: 80px;
}

.testimonial-stars {
  margin: 10px 0 25px;
  color: #f0c040;
  font-size: 28px;
}

.testimonial-stars i {
  margin-right: 3px;
}

.testimonial-card p {
  font-size: 28px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 40px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #081a2c;
}

.testimonial-client span {
  width: 70px;
  height: 4px;
  background: #f0c040;
  margin-right: 15px;
}

/* View All Button */
.testimonial-btn-wrapper {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  padding: 16px 45px;
  background: #081a2c;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  border: 2px solid #081a2c;
}

.view-all-btn:hover {
  background: transparent;
  color: #081a2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ABOUT / ATTORNEYS SECTION - Light Theme */
.about-section {
  background: #f8f9fa;
  padding: 100px 8%;
  color: #081a2c;
  overflow: hidden;
}

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

.about-heading {
  text-align: center;
  margin-bottom: 70px;
}

.about-heading h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  color: #081a2c;
}

.about-heading h1 span {
  display: block;
  color: #f0c040;
  font-weight: 700;
}

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

.about-left p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: #444;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.about-stats h2 {
  color: #f0c040;
  font-size: 42px;
  margin-bottom: 8px;
}

.about-stats span {
  color: #666;
}

.about-image-card {
  position: relative;
  height: 650px;
  border-radius: 260px;
  background: linear-gradient(180deg, #0c2f70, #08172d);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about-image-card img {
  width: 95%;
  object-fit: contain;
}

.about-badge {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-badge img {
  width: 90px;
}

.about-right {
  padding-left: 30px;
}

.about-line {
  width: 120px;
  height: 2px;
  background: #f0c040;
  margin-bottom: 40px;
}

.about-right h2 {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #081a2c;
}

.about-right h2 span {
  display: block;
  font-weight: 700;
  color: #f0c040;
}

.about-right p {
  font-size: 22px;
  color: #444;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #f0c040;
  color: #081a2c;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.35s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #f0c040;
}

.about-btn:hover {
  background: transparent;
  color: #f0c040;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

/* CONTACT FORM - Light Theme */
.contact {
  background: #ffffff;
  padding: 80px 8%;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-main-title {
  font-size: 38px;
  font-weight: bold;
  color: #081a2c;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.contact-sub-title {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 45px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.required-star {
  color: #e74c3c;
  font-weight: bold;
  font-size: 18px;
}

.contact-form {
  background: #fff;
  padding: 50px 50px 45px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #081a2c;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #222;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f0c040;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 192, 64, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

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

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

/* Disclaimer Checkbox */
.disclaimer-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #555 !important;
  padding: 5px 0;
}

.disclaimer-label input {
  display: none;
}

.checkmark {
  min-width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  background: #fff;
  transition: all 0.3s ease;
  margin-top: 1px;
  flex-shrink: 0;
}

.disclaimer-label input:checked + .checkmark {
  background: #f0c040;
  border-color: #f0c040;
}

.disclaimer-label input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #081a2c;
  font-size: 16px;
  font-weight: bold;
}

.disclaimer-label:hover .checkmark {
  border-color: #f0c040;
}

.disclaimer-text a {
  color: #f0c040;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer-text a:hover {
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: #081a2c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  border: 2px solid #081a2c;
}

.contact-submit-btn:hover {
  background: transparent;
  color: #081a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* CARDS & GRIDS */
.grid,
.grid4 {
  display: grid;
  gap: 25px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: #081a2c;
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  position: relative;
  background: #081a2c;
  background-image: url('../img/pattern.png');
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 44, 0.95);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 8% 35px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 35px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: #f0c040;
  transition: all 0.35s ease;
  border-radius: 2px;
}

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

.footer-nav a:hover {
  color: #f0c040;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.office,
.phone {
  text-align: center;
  padding: 10px 20px;
}

.office:not(:last-child),
.phone {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact i {
  font-size: 48px;
  color: #f0c040;
  margin-bottom: 20px;
  display: block;
}

.office h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 700;
}

.office p {
  font-size: 18px;
  line-height: 1.8;
  color: #d6dde7;
  margin-bottom: 20px;
}

.office a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #f0c040;
  transition: all 0.3s ease;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.office a:hover {
  color: #fff;
  border-bottom-color: #f0c040;
}

.phone p {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d6dde7;
  font-weight: 300;
}

.phone h2 {
  font-size: 48px;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
}

.footer-bottom p {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #f0c040;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.2);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #f0c040;
  border-color: #f0c040;
  color: #081a2c;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
  .footer-contact {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .office:not(:last-child),
  .phone {
    border-right: none;
  }

  .office:nth-child(2) {
    border-right: none;
  }

  .footer-nav {
    gap: 30px;
  }

  .footer-nav a {
    font-size: 16px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 1100px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-right {
    padding: 0;
  }

  .about-line {
    margin: 0 auto 30px;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-image-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .settlements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 65px !important;
  }

  header {
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    padding: 0 4% !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e8e8e8;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
  }

  nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
  }

  .logo {
    font-size: 13px !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo span {
    font-size: 13px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-img {
    height: 45px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    display: block !important;
  }

  .phone {
    display: block !important;
    font-size: 11px !important;
    margin: 0 8px 0 auto !important;
    flex-shrink: 0 !important;
    color: #f0c040 !important;
    font-weight: bold !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: 0 !important;
    padding: 5px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    z-index: 9999 !important;
  }

  .hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #081a2c !important;
    display: block !important;
  }

  nav ul {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 20px 5% !important;
    gap: 0 !important;
    align-items: center !important;
    background: #ffffff !important;
    position: absolute !important;
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 3px solid #f0c040 !important;
    z-index: 9998 !important;
    margin: 0 !important;
  }

  nav ul.active {
    display: flex !important;
  }

  nav ul li {
    width: 100% !important;
    list-style: none !important;
  }

  nav ul li a {
    color: #081a2c !important;
    font-size: 16px !important;
    padding: 12px 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: #f0c040 !important;
    background: #f8f9fa !important;
  }

  nav ul li:last-child a {
    border-bottom: none !important;
  }

  .hero {
    height: calc(70vh - 65px) !important;
    min-height: 350px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .overlay {
    padding: 0 5% 10% 5% !important;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  .hero-content button {
    padding: 12px 30px !important;
    font-size: 15px !important;
  }

  /* Hero Top Right - Mobile */
  .hero-text-top {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 13px;
    letter-spacing: 2px;
    border-width: 1.5px;
  }

  .hero-practice-list {
    top: 52px;
    right: 15px;
    gap: 4px;
  }

  .hero-practice-list ul {
    gap: 4px;
  }

  .hero-practice-list ul li {
    font-size: 9px;
    padding: 4px 12px;
    letter-spacing: 0.5px;
    border-radius: 15px;
  }

  section {
    padding: 50px 5%;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .settlements-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

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

  h2 {
    font-size: 26px;
  }

  .floating-icon {
    bottom: 20px;
    right: 20px;
  }

  .floating-icon a {
    width: 50px;
    height: 50px;
  }

  .floating-icon a span {
    font-size: 22px;
  }

  .whatsapp-btn i {
    font-size: 26px;
  }

  .office-text {
    font-size: 16px;
    padding: 0 10px;
  }

  .practice-main-title {
    font-size: 30px;
  }

  .practice-sub-title {
    font-size: 18px;
  }

  .practice-img {
    height: 160px;
  }

  .settlement-main-title {
    font-size: 30px;
  }

  .settlement-sub-title {
    font-size: 18px;
  }

  .settlement-card .amount {
    font-size: 26px;
  }

  .testimonial-main-title {
    font-size: 30px;
  }

  .testimonial-sub-title {
    font-size: 18px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 20px;
  }

  .testimonial-client {
    font-size: 22px;
  }

  .quote {
    font-size: 120px;
  }

  .testimonial-stars {
    font-size: 22px;
  }

  .view-all-btn {
    padding: 14px 35px;
    font-size: 16px;
  }

  .about-section {
    padding: 60px 5%;
  }

  .about-heading h1 {
    font-size: 2.5rem;
  }

  .about-image-card {
    height: 450px;
    max-width: 320px;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    right: -15px;
  }

  .about-badge img {
    width: 60px;
  }

  .about-right h2 {
    font-size: 36px;
  }

  .about-right p {
    font-size: 18px;
  }

  .about-stats {
    gap: 25px;
  }

  .about-stats h2 {
    font-size: 32px;
  }

  .about-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .contact {
    padding: 50px 5%;
  }

  .contact-main-title {
    font-size: 28px;
  }

  .contact-sub-title {
    font-size: 16px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }

  .contact-submit-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .footer-container {
    padding: 50px 5% 30px;
  }

  .footer-nav {
    gap: 25px;
    padding-bottom: 25px;
    margin-bottom: 35px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 35px;
  }

  .office,
  .phone {
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none !important;
  }

  .office:last-child,
  .phone:last-child {
    border-bottom: none;
  }

  .footer-contact i {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .office h3 {
    font-size: 22px;
  }

  .office p {
    font-size: 16px;
  }

  .phone p {
    font-size: 18px;
  }

  .phone h2 {
    font-size: 36px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 55px !important;
  }

  header {
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
    padding: 0 3% !important;
  }

  .logo {
    font-size: 10px !important;
    gap: 5px !important;
  }

  .logo-img {
    height: 38px !important;
  }

  .logo span {
    font-size: 10px !important;
  }

  .phone {
    font-size: 9px !important;
    margin: 0 5px 0 auto !important;
  }

  .hamburger span {
    width: 22px !important;
    height: 2.5px !important;
  }

  nav ul {
    top: 55px !important;
    padding: 15px 4% !important;
  }

  nav ul li a {
    font-size: 14px !important;
    padding: 10px 0 !important;
  }

  .hero {
    height: calc(60vh - 55px) !important;
    min-height: 280px !important;
  }

  .overlay {
    padding: 0 4% 12% 4% !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }

  .hero-content button {
    padding: 10px 25px !important;
    font-size: 13px !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Hero Top Right - Mobile Small */
  .hero-text-top {
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    border-width: 1px;
  }

  .hero-practice-list {
    top: 38px;
    right: 10px;
    gap: 3px;
  }

  .hero-practice-list ul {
    gap: 3px;
  }

  .hero-practice-list ul li {
    font-size: 7px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
    border-radius: 12px;
  }

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

  .office-card,
  .practice-card {
    padding: 0;
  }

  .floating-icon {
    bottom: 15px;
    right: 15px;
  }

  .floating-icon a {
    width: 45px;
    height: 45px;
  }

  .floating-icon a span {
    font-size: 20px;
  }

  .whatsapp-btn i {
    font-size: 22px;
  }

  .office-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .practice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .practice-main-title {
    font-size: 24px;
  }

  .practice-sub-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .practice-img {
    height: 120px;
  }

  .practice-label {
    font-size: 12px;
    padding: 10px 10px 12px 10px;
  }

  .settlements-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .settlement-main-title {
    font-size: 24px;
  }

  .settlement-sub-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .settlement-card {
    padding: 25px 20px;
  }

  .settlement-card .amount {
    font-size: 24px;
  }

  .settlement-card .case-type {
    font-size: 14px;
  }

  .testimonial-main-title {
    font-size: 24px;
  }

  .testimonial-sub-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 10px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .testimonial-client {
    font-size: 18px;
  }

  .quote {
    font-size: 80px;
    line-height: 60px;
  }

  .testimonial-stars {
    font-size: 18px;
  }

  .testimonial-client span {
    width: 40px;
  }

  .view-all-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .about-section {
    padding: 40px 5%;
  }

  .about-heading h1 {
    font-size: 2rem;
  }

  .about-image-card {
    height: 350px;
    max-width: 250px;
  }

  .about-badge {
    width: 70px;
    height: 70px;
    top: 15px;
    right: -10px;
  }

  .about-badge img {
    width: 45px;
  }

  .about-right h2 {
    font-size: 28px;
  }

  .about-right p {
    font-size: 16px;
  }

  .about-stats {
    gap: 20px;
  }

  .about-stats h2 {
    font-size: 28px;
  }

  .about-stats span {
    font-size: 14px;
  }

  .about-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .about-left p {
    font-size: 16px;
  }

  .contact-main-title {
    font-size: 22px;
  }

  .contact-sub-title {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
  }

  .disclaimer-text {
    font-size: 13px !important;
  }

  .contact-submit-btn {
    padding: 14px 25px;
    font-size: 15px;
  }

  .footer-container {
    padding: 40px 5% 25px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-nav {
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .office h3 {
    font-size: 19px;
  }

  .office p {
    font-size: 15px;
  }

  .office a {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .phone p {
    font-size: 16px;
  }

  .phone h2 {
    font-size: 28px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-links span {
    font-size: 12px;
  }

  .socials {
    gap: 12px;
  }

  .socials a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}