

/* ========== GLOBAL STYLES ========== */
:root {
    /* Colors */
    --primary-color: #ab8b65;
    --secondary-color: #1a2b47;
    --accent-color: #c69c6d;
    --dark-color: #121921;
    --light-color: #f9f9f9;
    --gray-color: #7a8394;
    --text-color: #2c3e50;
    --white-color: #ffffff;
    --black-color: #000000;
    --danger-color: #e74c3c;
  
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Raleway', sans-serif;
  
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
  }
  
  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
  }
  
  body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white-color);
    overflow-x: hidden;
  }
  
  ul, ol {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
  }
  
  button {
    cursor: pointer;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
  }
  
  h1 {
    font-size: 4.8rem;
  }
  
  h2 {
    font-size: 3.6rem;
  }
  
  h3 {
    font-size: 2.4rem;
  }
  
  h4 {
    font-size: 2rem;
  }
  
  p {
    margin-bottom: 2rem;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    
  }
  
  .section-padding {
    padding: var(--section-padding);
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
  }
  
  .section-header.light h2,
  .section-header.light p {
    color: var(--white-color);
  }
  
  .section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .section-divider {
    height: 1px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 2.5rem;
  }
  
  .btn {
    display: inline-block;
    padding: 1.4rem 3rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 2px solid transparent;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
    z-index: -1;
  }
  
  .btn:hover::before {
    width: 100%;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .btn-light {
    background-color: var(--white-color);
    color: var(--secondary-color);
  }
  
  .bg-light {
    background-color: #f8f9fa;
  }
  
  .bg-dark {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }
  
  .bg-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  /* ========== HEADER STYLES ========== */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Çok üstte olacak */
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.4rem;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-right: 2rem;
  }
  
  .contact-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
  }
  
  .social-links {
    display: flex;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--secondary-color);
    margin-left: 0.8rem;
    transition: all 0.3s ease;
    background-color: #f1f1f1;
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
  }
  
  .logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }
  
  .logo-justice {
    color: var(--secondary-color);
  }
  
  .logo-legal {
    color: var(--primary-color);
  }
  
  .nav-menu {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0 1.5rem;
    position: relative;
  }
  
  .nav-menu li:last-child {
    margin-right: 0;
  }
  
  .nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }
  
  .nav-menu a.active {
    color: var(--primary-color);
  }
  
  .mobile-menu-btn {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--secondary-color);
  }
  
  /* ========== HERO SECTION ========== */
  .hero {
    background: linear-gradient(to bottom, #3a3a3a, #2e2e2e);
    color: #ffffff;
    padding: 16rem 2rem 6rem 2rem; /* üst 12rem boşluk */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  
  .hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: block;
    visibility: visible;
    opacity: 1;
    color: #ffffff !important;
  }
  
  .hero h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c9a66b;
  }
  
  .hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #dddddd;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .hero-buttons a {
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #c9a66b;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    background-color: #ab8b65;
  }
  
  .btn-secondary {
    border: 2px solid #c9a66b;
    color: #c9a66b;
    background-color: transparent;
  }
  
  .btn-secondary:hover {
    background-color: #c9a66b;
    color: #ffffff;
  }
  
  
  /* ========== ABOUT SECTION ========== */
  .about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
  }
  
  .about-image {
    position: relative;
    z-index: 1;
  }
  
  .about-image img {
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
  }
  
  .firm-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  
  .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .value-item i {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .value-item h4 {
    margin-bottom: 1rem;
  }
  
  .value-item p {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  
  /* ========== PRACTICE AREAS SECTION ========== */
  .practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .practice-area-card {
    background-color: var(--white-color);
    border-radius: 6px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .practice-area-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0.03;
  }
  
  .practice-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .practice-area-card:hover::before {
    height: 100%;
  }
  
  .practice-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(171, 139, 101, 0.1);
    margin-bottom: 2.5rem;
  }
  
  .practice-icon i {
    font-size: 3.2rem;
    color: var(--primary-color);
  }
  
  .practice-area-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .practice-area-card p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  
  .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
  }
  
  .read-more i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  /* ========== ATTORNEYS SECTION ========== */
 .attorneys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü için 3 kolon */
    gap: 3rem;
    align-items: start; /* Kartlar yukarıdan hizalanır */
    grid-auto-rows: minmax(400px, auto); /* Satırların minimum yüksekliğini zorlar */
}
  
  .attorney-card {
    background-color: var(--white-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .attorney-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
 .attorney-image {
    height: 100%; /* Grid hücresi yüksekliğine uyar */
    overflow: hidden;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Görsel tam sığar, kesilmez */
}
  
  .attorney-card:hover .attorney-image img {
    transform: scale(1.05);
  }
  
  .attorney-info {
    padding: 2.5rem;
    text-align: center;
  }
  
  .attorney-info h3 {
    margin-bottom: 0.5rem;
  }
  
  .attorney-info h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .attorney-info p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .attorney-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .attorney-social a {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
  }
  
  .attorney-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  /* ========== TESTIMONIALS SECTION ========== */
  .testimonials-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 15px;
  }
  
  .testimonial-item.active {
    display: block;
    opacity: 1;
  }
  
  .testimonial-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4rem;
    position: relative;
  }
  
  .testimonial-quote {
    margin-bottom: 3rem;
    position: relative;
  }
  
  .testimonial-quote i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
  }
  
  .testimonial-quote p {
    font-size: 1.8rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
  }
  
  .testimonial-author h4 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
  
  .testimonial-author p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 1.4rem;
  }
  
  .rating {
    color: var(--primary-color);
    font-size: 1.6rem;
  }
  
  .testimonial-controls {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    background-color: var(--primary-color);
  }
  
  .testimonial-dots {
    display: flex;
    margin: 0 2rem;
  }
  
  .dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--primary-color);
  }
  
  /* ========== CONTACT SECTION ========== */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .contact-form-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 4rem;
    border-radius: 8px;
    background-color: var(--white-color);
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(171, 139, 101, 0.2);
  }
  
  .form-submit {
    grid-column: span 2;
    margin-top: 1rem;
  }
  
  .contact-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .contact-info-card {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .card-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(171, 139, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  
  .card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .card-content p {
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .map-container {
    grid-column: span 2;
    border-radius: 8px;
    overflow: hidden;
    height: auto;
    margin-top: 2rem;
  }
  
  /* ========== CTA SECTION ========== */
  .cta-section {
    text-align: center;
  }
  
  .cta-content h2 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
  }
  
  .cta-content p {
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
  }
  
  /* ========== FOOTER ========== */
  .footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 8rem 0 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
  }
  
  .footer-logo h3 {
    color: var(--white-color);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo p {
    margin-bottom: 2rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background-color: var(--primary-color);
  }
  
  .footer h4 {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer ul li {
    margin-bottom: 1.2rem;
  }
  
  .footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }
  
  .footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-contact ul li {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .footer-contact ul li i {
    margin-right: 1rem;
    color: var(--primary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
  
  .footer-bottom-links a {
    margin-left: 2rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-bottom-links a:hover {
    color: var(--primary-color);
  }
  
  /* ========== BACK TO TOP BUTTON ========== */
  #backToTop {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  
  #backToTop.show {
    opacity: 1;
    visibility: visible;
  }
  
  #backToTop:hover {
    background-color: var(--secondary-color);
  }
  
  /* ========== RESPONSIVE STYLES ========== */
  @media (max-width: 1200px) {
    html {
      font-size: 58%;
    }
  }
  
  @media (max-width: 991px) {
    html {
      font-size: 56%;
    }
  
    .about-content,
    .contact-content {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
  
    .practice-areas-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .attorneys-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 54%;
    }
  
    .header-top {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--white-color);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
      z-index: 999;
    }
  
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(255, 255, 255, 0.6); /* Hafif şeffaf beyaz */
      backdrop-filter: blur(10px); /* Flu efekti */
      -webkit-backdrop-filter: blur(10px); /* Safari için destek */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
      z-index: 999;
    }
    
    .nav-menu.active {
      transform: translateY(0);
    }
    
    .nav-menu li {
      margin: 2rem 0;
    }
    
    .nav-menu a {
      font-size: 2rem;
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
    }
    
    .nav-menu a.active {
      color: var(--primary-color);
    }
    
    .nav-menu a.active::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }
    
    .mobile-menu-btn {
      display: block;
      font-size: 2.8rem;
      cursor: pointer;
      color: var(--primary-color);
      z-index: 1000;
      position: absolute;
      top: 2rem;
      right: 2rem;
    }
    
  
    .hero-buttons {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .firm-values {
      grid-template-columns: 1fr;
    }
  
    .contact-info-container {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
  
    .footer-bottom-links a {
      margin: 0 1rem;
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 50%;
    }
  
    .practice-areas-grid,
    .attorneys-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .contact-form {
      grid-template-columns: 1fr;
    }
  
    .form-group.full-width {
      grid-column: 1;
    }
  
    .form-submit {
      grid-column: 1;
    }
  
    .testimonial-content {
      padding: 3rem 2rem;
    }
  }
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #c9a66b; /* primary color */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #ab8b65;
  }
  
  