/* =============================================
   Hedgehog & Fox Law Firm - Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0d1b2a;
  --navy-light: #162a40;
  --gold: #c8a45a;
  --gold-light: #e0ba7a;
  --white: #ffffff;
  --off-white: #f5f2ec;
  --gray-light: #f0f0f0;
  --gray: #888888;
  --dark-text: #1a1a1a;
  --body-text: #444444;
  --border: #ddd;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", "Segoe UI", sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 50px;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gold-divider span {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.gold-divider i {
  color: var(--gold);
  font-size: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-left a,
.top-bar-right a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--gold);
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-right .social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-right .social-icons a {
  font-size: 0.95rem;
}

.top-bar .hours {
  color: var(--gold);
  font-weight: 600;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.logo-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 700;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

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

.nav-menu > li > a.has-dropdown::after {
  content: " ▾";
  font-size: 0.7rem;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 290px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
  border-top: 3px solid var(--gold);
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--body-text);
  border-bottom: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--gold);
  padding-left: 28px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}

.nav-phone:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-phone i {
  color: var(--gold);
  font-size: 1rem;
}

.nav-phone:hover i {
  color: var(--navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO BANNER SLIDER
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
}

/* Grid stacking — all slides occupy the same cell */
.hero-slider {
  display: grid;
  min-height: 85vh;
}

/* All slides stack in grid cell 1/1 */
.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Dark overlay + gold dot pattern per slide */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    rgba(13, 27, 42, 0.78);
  z-index: 0;
}

/* Slide backgrounds — replace background-image with url('images/hero-N.jpg')
   when real photos are available; overlay above will darken them automatically. */
.hero-slide--1 {
  background-image: url("images/banner-1.jpg");
}

.hero-slide--2 {
  background-image: url("images/banner-2.jpg");
}

.hero-slide--3 {
  background-image: url("images/banner-3.jpg");
}

/* Slide content sits above the overlay */
.hero-slide .container {
  position: relative;
  z-index: 1;
}

/* ---- Slider Arrows ---- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  background: rgba(200, 164, 90, 0.12);
  border: 2px solid rgba(200, 164, 90, 0.45);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.hero-arrow--prev {
  left: 24px;
}
.hero-arrow--next {
  right: 24px;
}

/* ---- Slider Dots ---- */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
  transform: none;
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-content.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-left {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 90, 0.15);
  border: 1px solid rgba(200, 164, 90, 0.4);
  color: var(--gold);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title .gold {
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 22px;
  text-align: center;
  color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.hero-card:hover {
  background: rgba(200, 164, 90, 0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.hero-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.hero-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

/* =============================================
   QUICK CONTACT BAR
   ============================================= */
.quick-contact-bar {
  background: var(--gold);
  padding: 18px 0;
}

.quick-contact-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-contact-bar p {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
}

.quick-contact-bar span {
  font-weight: 400;
}

.quick-contact-bar a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition);
}

.quick-contact-bar a:hover {
  background: #0a1520;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--off-white);
}

.services-section .container > .section-subtitle {
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--transition);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--navy);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card a:hover {
  gap: 10px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-placeholder .overlay-text {
  text-align: center;
  color: var(--white);
}

.about-img-placeholder .overlay-text i {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 20px;
}

.about-img-placeholder .overlay-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.about-img-placeholder .overlay-text p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.about-badge h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge p {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-content {
}

.about-content .section-title {
  margin-bottom: 8px;
}

.about-content .lead {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* =============================================
   FIRM PROFILE (SPLIT BACKGROUND) SECTION
   ============================================= */
.firm-profile-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background-image: url("images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Semi-transparent overlay so text stays readable over a photo */
.firm-profile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.62);
  z-index: 0;
}

.firm-profile-section .container {
  position: relative;
  z-index: 1;
}

/* Two-column grid with a gold vertical divider in the centre */
.firm-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.firm-profile-grid::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: rgba(200, 164, 90, 0.35);
  transform: translateX(-50%);
}

.firm-profile-col {
  padding: 20px 56px;
  text-align: center;
  color: var(--white);
}

/* Centre the gold divider inside the column */
.fp-divider {
  justify-content: center;
  margin-bottom: 28px;
}

.firm-profile-col p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* Shared button base */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  margin-top: 10px;
  cursor: pointer;
}

/* Dark (left column) button */
.fp-btn--dark {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.fp-btn--dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* Gold (right column) button */
.fp-btn--gold {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--navy);
}

.fp-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 900px) {
  .firm-profile-section {
    background-attachment: scroll;
    padding: 60px 0;
  }
  .firm-profile-grid {
    grid-template-columns: 1fr;
  }
  .firm-profile-grid::before {
    display: none;
  }
  .firm-profile-col {
    padding: 28px 20px;
  }
  .firm-profile-col:first-child {
    border-bottom: 1px solid rgba(200, 164, 90, 0.3);
  }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--navy);
  color: var(--white);
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 50px;
}

.why-item {
  background: var(--navy);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
}

.why-item:hover {
  background: var(--navy-light);
}

.why-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--gold);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* =============================================
   PRACTICE AREAS
   ============================================= */
.practice-section {
  background: var(--off-white);
}

.practice-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.practice-tab {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: var(--white);
  color: var(--body-text);
  border: none;
  transition: all var(--transition);
}

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

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.practice-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: all var(--transition);
}

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

.practice-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.9;
  transition: all var(--transition);
}

.practice-card:hover .practice-img {
  opacity: 1;
}

.practice-body {
  padding: 20px;
}

.practice-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.practice-body p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  padding: 36px 28px;
  position: relative;
  border-left: 4px solid var(--gold);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.author-info h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section {
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: all var(--transition);
}

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

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.blog-img .blog-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--gray);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.blog-body h3:hover {
  color: var(--gold);
  cursor: pointer;
}

.blog-body p {
  font-size: 0.87rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 10px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 164, 90, 0.15);
  border: 1px solid rgba(200, 164, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-item-text h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--gold-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060e17;
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 0;
}

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

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo-text h1 {
  color: var(--white);
}

.footer-about p {
  font-size: 0.87rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.87rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

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

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================
   MOBILE OVERLAY MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 9999;
  overflow-y: auto;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-menu-header .logo-text h1 {
  color: var(--white);
}

.mobile-menu-header .logo-text span {
  color: rgba(255, 255, 255, 0.5);
}

.close-menu {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li a {
  display: block;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.mobile-menu-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.mobile-menu-cta a i {
  color: var(--gold);
}

/* =============================================
   BROAD RANGE OF LAW SERVICES
   ============================================= */
.broad-services-section {
  background: var(--white);
}

.broad-services-grid {
  display: flex;
  justify-content: center;
  gap: 114px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.broad-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.broad-service-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.broad-service-circle:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.broad-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.broad-service-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dark-text);
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .broad-services-grid {
    gap: 30px;
  }
  .broad-service-circle {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .broad-services-grid {
    gap: 24px;
  }
  .broad-service-circle {
    width: 120px;
    height: 120px;
  }

  .broad-service-item {
    max-width: 140px;
  }
}

/* =============================================
   TOUGHEST DEFENCE SECTION
   ============================================= */
.toughest-section {
  position: relative;
  padding: 90px 0 70px;
  background: #f9f6f1;
  overflow: hidden;
  text-align: center;
}

/* Large faded lawyer silhouette background */
.toughest-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(249, 246, 241, 0.15) 0%,
      rgba(249, 246, 241, 0.15) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'%3E%3Cellipse cx='100' cy='80' rx='38' ry='45' fill='%23ccc' opacity='0.18'/%3E%3Crect x='62' y='122' width='76' height='120' rx='8' fill='%23ccc' opacity='0.14'/%3E%3Crect x='44' y='136' width='28' height='80' rx='6' fill='%23ccc' opacity='0.12'/%3E%3Crect x='128' y='136' width='28' height='80' rx='6' fill='%23ccc' opacity='0.12'/%3E%3C/svg%3E")
      center/auto 95% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.toughest-inner {
  position: relative;
  z-index: 1;
}

.toughest-divider {
  justify-content: center;
}

.toughest-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 52px;
  line-height: 1.2;
}

.toughest-hint {
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.toughest-hint i {
  margin-right: 6px;
  color: var(--gold);
}

/* Grid */
.toughest-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 133px;
}

/* Individual card */
.tough-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  outline: none;
  width: 190px;
}

/* Gold dot above circle */
.gold-dot {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tough-card:hover .gold-dot,
.tough-card.active .gold-dot {
  transform: scale(1.2);
}

/* Circle wrapper — clips to circle */
.circle-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(200, 164, 90, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  background: var(--navy);
}

.tough-card:hover .circle-wrap {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.tough-card.active .circle-wrap {
  border-color: var(--gold);
  box-shadow:
    0 0 0 4px rgba(200, 164, 90, 0.25),
    0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Image side (default visible) */
.circle-img-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.tough-card.active .circle-img-side {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

/* Icon replacing placeholder in circle-img-side */
.ci-icon {
  font-size: 3.2rem;
  color: var(--gold, #c9a84c);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
}

img.ci-icon {
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Placeholder images — grayscale style */
.ci-placeholder {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  background-size: cover;
  background-position: center;
}

.ci-capital {
  background: linear-gradient(145deg, #4a5568 0%, #2d3748 40%, #1a202c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-capital::after {
  content: "©";
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.ci-tax {
  background: linear-gradient(145deg, #5a6378 0%, #363d50 40%, #1c2233 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-tax::after {
  content: "⚖";
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.ci-family {
  background: linear-gradient(145deg, #607080 0%, #3d4a58 40%, #212d38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-family::after {
  content: "♥";
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.ci-property {
  background: linear-gradient(145deg, #556070 0%, #32404e 40%, #1e2c3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-property::after {
  content: "⌂";
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.ci-criminal {
  background: linear-gradient(145deg, #4e5a68 0%, #303845 40%, #1b2430 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-criminal::after {
  content: "🔨";
  font-size: 2.8rem;
  filter: grayscale(1);
  opacity: 0.5;
}

.ci-immigration {
  background: linear-gradient(145deg, #4a5870 0%, #2d3a50 40%, #1a2535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-immigration::after {
  content: "🌐";
  font-size: 2.8rem;
  filter: grayscale(1);
  opacity: 0.45;
}

/* Name side (hidden by default, shown on click) */
.circle-name-side {
  position: absolute;
  inset: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
  pointer-events: none;
}

.tough-card.active .circle-name-side {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.circle-name-side i {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
}

.circle-name-side h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.circle-name-side p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-align: center;
}

/* Label bar below circle */
.card-label {
  margin-top: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  transition: background 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tough-card:hover .card-label {
  background: #162a40;
}

.tough-card.active .card-label {
  background: var(--gold);
  color: var(--navy);
  border-bottom-color: #a07820;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .toughest-grid {
    gap: 24px 20px;
  }
  .tough-card {
    width: 160px;
  }
  .circle-wrap {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 700px) {
  .toughest-title {
    font-size: 1.9rem;
  }
  .tough-card {
    width: 140px;
  }
  .circle-wrap {
    width: 132px;
    height: 132px;
  }
  .card-label {
    font-size: 0.66rem;
    padding: 8px 10px;
  }
  .toughest-grid {
    gap: 20px 16px;
  }
}

@media (max-width: 480px) {
  .toughest-grid {
    gap: 18px 14px;
  }
  .tough-card {
    width: 130px;
  }
  .circle-wrap {
    width: 122px;
    height: 122px;
  }
  .circle-name-side p {
    display: none;
  }
  .toughest-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .hero-right {
    display: none;
  }
  .hero-slider {
    min-height: 100vh;
  }
  .hero-slide {
    padding: 80px 0 80px;
    min-height: 100vh;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-arrow {
    display: none;
  }
  .hero-dots {
    bottom: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badge {
    right: 10px;
    bottom: 10px;
    width: 100px;
    height: 100px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form {
    padding: 28px;
  }

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

  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
  }

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

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

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

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

  .quick-contact-bar .container {
    flex-direction: column;
    text-align: center;
  }

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

  .section-title {
    font-size: 1.6rem;
  }
  .section-padding {
    padding: 48px 0;
  }
}
