@media (max-width: 480px) {
  /* CONTAINER */
  .container {
    width: 95%;
  }

  /* TOP BAR */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-bar .left span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .top-bar .right {
    width: 100%;
    text-align: left;
  }

  .top-bar .right i {
    margin-left: 0;
    margin-right: 12px;
  }

  /* NAVBAR */
  .nav-container {
    justify-content: space-between;
  }
  .navbar {
    display: flex;
  }
  /* LOGO */
  .logo img {
    width: 40px;
  }

  .logo-text h2 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 10px;
  }

  /* HIDE MENU */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    display: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links li {
    padding: 8px 0;
  }

  /* SHOW MENU WHEN ACTIVE */
  .nav-links.active {
    display: flex;
  }

  /* BUTTON SMALL */
  .consult-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* HAMBURGER MENU */
  .menu-toggle {
    display: flex;
  }

  /* HIDE BUTTON (optional cleaner UI) */
  .actions {
    display: none;
  }
  .top-bar .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    text-align: center;
  }

  .top-bar .left span {
    display: block;
    margin: 4px 0;
  }
  .top-bar .right {
    display: flex;
    justify-content: center;
  }
  .hero {
    flex-direction: column;
    padding: 60px;
    text-align: center;
    min-height: auto;
  }

  /* LEFT FULL WIDTH */
  .hero-left {
    width: 100%;
  }

  /* TEXT */
  .tag {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* TEXT SLIDER HEIGHT FIX */
  .text-slider {
    height: 180px;
  }

  /* REVIEWS CENTER */
  .reviews {
    flex-direction: column;
    gap: 10px;
  }

  .avatars {
    display: flex;
    justify-content: center;
  }

  .review-text {
    margin-left: 0;
    text-align: center;
  }

  /* BUTTON */
  .cta {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* RIGHT IMAGE */
  .hero-right {
    width: 100%;
    margin-top: 40px;
  }

  .slider {
    height: 320px;
  }

  .slide img {
    border-radius: 0 40px;
  }

  /* REMOVE EXTRA DESIGN ELEMENTS (clean mobile UI) */
  .border-outer {
    display: none;
  }

  .circle-badge {
    display: none;
  }

  .dots {
    right: -48px;
  }

  /* SECTION */
  .about {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  /* ============================= */
  /* IMAGE GRID (MAIN PART) */
  /* ============================= */

  .about-images {
    width: 100%;
  }

  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;

    width: 100%;
  }

  /* REMOVE ABSOLUTE POSITIONING */
  .img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* LEFT BIG IMAGE */
  .img.big {
    grid-row: span 2;
    width: 200px;
    height: 450px;
  }

  /* RIGHT TOP */
  .img.top {
    width: 200px;
    left: 0px;
  }

  /* RIGHT BOTTOM */
  .img.bottom {
    width: 200px;
    left: 0px;
  }

  /* REMOVE FRAME */
  .frame {
    display: none;
  }

  /* ============================= */
  /* CONTENT */
  /* ============================= */

  .about-content {
    width: 100%;
    text-align: center;
  }

  .about-tag {
    font-size: 14px;
  }

  .about-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* LIST */
  .about-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 25px;
  }

  .about-list li {
    font-size: 14px;
  }

  /* BUTTON */
  .about-btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%; /* better conversion */
  }

  .stats {
    padding: 60px 20px;
  }

  .stats-container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    text-align: center;
  }

  /* EACH STAT */
  .stat {
    width: 100%;
  }

  .stat i {
    font-size: 30px;
  }

  .stat h2 {
    font-size: 28px;
  }

  .stat p {
    font-size: 13px;
  }

  /* DIVIDER → HORIZONTAL */
  .divider {
    width: 60%;
    height: 1px;
    margin: 10px auto;
  }

  .services {
    padding: 60px 20px;
  }

  /* HEADINGS */
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section-tag {
    font-size: 14px;
  }

  /* GRID → 1 COLUMN */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARD */
  .service-card {
    padding: 25px 20px;
    text-align: center;
  }

  /* ICON CENTER */
  .icon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
  }

  .icon i {
    font-size: 20px;
  }

  /* TEXT */
  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .service-card a {
    font-size: 14px;
  }

  .testimonials {
    padding: 60px 20px;
  }

  /* HEADINGS */
  .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tag {
    font-size: 14px;
  }

  /* NAV BUTTONS (OPTION 1: HIDE) */
  .nav-btns {
    display: none;
  }

  /* SLIDER */
  .slider-track {
    gap: 0;
  }

  /* CARD FULL WIDTH */
  .card {
    min-width: 100%; /* FULL WIDTH */
    max-width: 100%;
  }

  .contact {
    padding: 60px 20px;
  }

  /* STACK LAYOUT */
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  /* FULL WIDTH */
  .contact-info,
  .contact-form {
    width: 100%;
  }

  /* TEXT */
  .contact-info h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .contact-desc {
    font-size: 14px;
  }

  /* INFO ITEMS */
  .info-box {
    font-size: 14px;
  }

  .info-box i {
    font-size: 14px;
  }

  /* FORM */
  .contact-form form {
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 14px;
  }

  /* BUTTON */
  .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  /* MAP */
  .map iframe {
    height: 250px;
    border-radius: 15px;
  }

  /* TOP SECTION */
  .topper {
    gap: 10px;
  }

  .topper img {
    width: 50px;
    height: 50px;
  }

  .topper h3 {
    font-size: 16px;
  }

  .topper span {
    font-size: 11px;
  }

  .stars {
    font-size: 12px;
  }

  /* TEXT */
  .card p {
    font-size: 13px;
  }

  /* QUOTE ICON SMALL */
  .card::after {
    font-size: 28px;
    right: 15px;
    top: 15px;
  }
  .nav-btns {
    position: relative; /* FIX: remove absolute */
    top: auto;
    right: auto;

    display: flex !important;
    justify-content: center;
    align-items: center;

    margin: 10px 0 20px;
    z-index: 10;
  }

  .nav-btns button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .footer {
    padding-top: 50px;
  }

  /* GRID → 1 COLUMN */
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 30px;
    text-align: center;
  }

  /* LOGO */
  .footer .logo {
    font-size: 20px;
  }

  /* TEXT */
  .footer p {
    font-size: 13px;
  }

  /* HEADINGS */
  .footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  /* LINKS */
  .footer ul li {
    margin-bottom: 8px;
  }

  .footer ul li a {
    font-size: 13px;
  }

  /* SOCIAL ICONS CENTER */
  .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .socials i {
    margin: 0;
    font-size: 16px;
  }

  /* CONTACT ICON ALIGN */
  .footer-col i {
    margin-right: 6px;
  }

  /* BOTTOM */
  .footer-bottom {
    font-size: 12px;
    padding: 12px;
  }
  img[src="court-lawbooks.png"] {
    display: none;
  }
}
