* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 1.5rem 5.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {

  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 24px;
  font-weight: 600;
  color: #f17714;
  text-decoration: none;
  align-items: center;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: #ff8c00;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c00;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-contact-btn {
  background: #ff8c00;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.navbar-contact-btn:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.navbar-contact-btn svg {
  width: 20px;
  height: 20px;
}

.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.navbar-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.page-content {
  padding-top: 90px;
}

/* Hero */
.hero {
  position: relative;
  height: 75vh;
  background: url("../image/_.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.subtitle {
  color: #e0b36c;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  margin: 20px 0;
  line-height: 1.1;
}

.hero h1::content {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px; /* Adjust the width of the line */
  height: 4px; /* Adjust the thickness of the line */
  background-color: red; /* Adjust the color of the line */
}

.hero p {
  color: #e0b36c;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.7;
  max-width: 540px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 38px;
  border: 2px solid #e0b36c;
  border-radius: 50px;
  color: #e0b36c;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #e0b36c;
  color: #000;
}

/* Who We Are Section */
.who-we-are {
  background: white;
  padding: 5rem 2rem;
}

.who-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.who-header {
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  margin-bottom: 3rem;
}

.who-header h1 {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: 'Georgia', serif;
  line-height: 1.3;
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-section {
  /* width: 100%; */
  margin: 0 auto;
  /* padding: 4rem 0; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
      adding: 2rem 0;
}

.about-content h2 {
  font-size: 3.5rem;
  color: #0066cc;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e3ba7a;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.quote-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.quote-button svg {
  width: 20px;
  height: 20px;
}

.areas-serve-section {
  margin-top: 3rem;
}

.areas-serve-section h3 {
  font-size: 1.2rem;
  color: #92651e;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.areas-list {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.area-tag {
  background: transparent;
  color: #e3ba7a;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #dd992b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
}

.who-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.who-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.who-image:hover img {
  transform: scale(1.05);
}

.experience-highlight {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #f8f5f0;
  border-left: 3px solid #c9a96e;
  margin-top: 1rem;
}

.experience-highlight strong {
  color: #c9a96e;
  font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
  background: #2d2420;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3.5rem;
  color: #c9a96e;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-bar {
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem auto 0.5rem;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: #c9a96e;
  width: 0;
  transition: width 2s ease;
}

.stat-percentage {
  font-size: 0.85rem;
  color: #c9a96e;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 5rem 2rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: 'Georgia', serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: #fafafa;
  padding: 2.5rem 2rem;
  border-left: 3px solid #c9a96e;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stars {
  color: #c9a96e;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
}

.author-name {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author-project {
  font-size: 0.85rem;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  background: #2d2420;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: 'Georgia', serif;
}

.cta-container p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-btn {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid;
}

.cta-btn-primary {
  background: #c9a96e;
  color: #1a1a1a;
  border-color: #c9a96e;
}

.cta-btn-primary:hover {
  background: transparent;
  color: #c9a96e;
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.cta-btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.05);
}

.contact-infos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.quote-buttond {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #40c351;
  color: white;
  padding: 0.4rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.quote-buttond:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.quote-buttond svg {
  width: 40px;
  height: 40px;
}

/* faq section */
.faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #222;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: #1d2b64;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 20px 25px;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #0077cc;
}

/* footer */
.footer {
  background: #2d2420;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9a96e"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></svg>') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.footer-brand-content h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-brand-content p {
  color: #a0a0a0;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.newsletter-form {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1rem;
  background: white;
  border: none;
  color: #333;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
}

.newetter-form button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #c9a96e;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.newsletter-form button:hover {
  transform: translateY(-50%) translateX(3px);
}

.footer-column h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #c9a96e;
  display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
  position: relative;
}

.footer-links li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #c9a96e;
}

.contact-item p,
.contact-item a {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: white;
}

.footer-copyright {
  color: #a0a0a0;
  font-size: 0.85rem;
  font-weight: 300;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #c9a96e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 100;
  text-decoration: none;
}

.back-to-top:hover {
  background: #b8945d;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .who-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }

  .ba-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
.navbar {
  padding: 2rem 1.5rem;
}

      .navbar-logo img {
  height: 40px;
}

  .navbar-right {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  /* background: rgba(216, 193, 78, 0.98); */
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-right.active {
    transform: translateX(0);
  }

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .hero {
    height: 60vh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .show{
    display: none;
  }

  .hidden{
    display: block;
  }
}

@media (max-width: 900px) {
  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: black; */
  opacity: 90%;
  /* padding: 1.5rem 0.5rem; */
  z-index: 1000;
  transition: all 0.3s ease;
}

  .navbar.scrolled {
    background-color: #000 ;
    opacity: 60%;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }

  /* .nav-links,
  .cta-buttons {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  } */

  .nav-links.active,
  .cta-buttons.active {
    transform: translateX(0);
  }

  .navbar-right.active{
    background-color: #000;
  }

  .cta-buttons {
    top: auto;
    bottom: 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.98);
  }

  .nav-links a {
    color: white !important;
    font-size: 1.1rem;
  }

  .call-btn {
    color: white !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background: #fff;
  }

  nav.scrolled .mobile-toggle span {
    background: #0066cc;
  }

  .hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .who-we-are, .testimonials-section {
    padding: 3rem 1.5rem;
  }

  .who-header h1 {
    font-size: 2.2rem;
  }

  .about-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
      }

      .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
      }

      .about-text {
        gap: 1.2rem;
        margin-bottom: 2rem;
      }

      .about-text p {
        font-size: 0.95rem;
      }

      .quote-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
      }

      .areas-serve-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
      }

      .areas-list {
        gap: 0.7rem;
      }

      .area-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        flex: 1 1 calc(50% - 0.35rem);
        text-align: center;
      }

  .stats-section {
    padding: 3rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .before-after-section {
    padding: 3rem 1.5rem;
  }

  .ba-slider-container {
    height: 300px;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-container h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}