* {
  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;
}

.get-in-touch-section {
            background-color: #eeeeee;
            padding: 100px 5%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: start;
        }

        .left-content {
            padding-top: 10px;
        }

        .section-label {
            color: #b89968;
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            letter-spacing: 0.5px;
        }

        .section-label::before {
            content: '';
            width: 50px;
            height: 1.5px;
            background-color: #b89968;
        }

        .main-title {
            font-size: 68px;
            color: #1a1a1a;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 50px;
            letter-spacing: -1px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-icons {
            width: 65px;
            height: 65px;
            background-color: #b89968;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .social-icons svg,
        .card-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .social-icons:hover {
            background-color: #a07d54;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(184, 153, 104, 0.3);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .contact-card {
            background: white;
            padding: 45px 40px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 25px;
            min-height: 160px;
        }

        .contact-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            border-color: #d0d0d0;
        }

        .card-icon {
            width: 58px;
            height: 58px;
            background-color: #b89968;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            flex-shrink: 0;
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
        }

        .card-content {
            flex: 1;
            padding-top: 3px;
        }

        .card-content h3 {
            font-size: 22px;
            color: #1a1a1a;
            font-weight: 400;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .card-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            font-family: 'Arial', sans-serif;
        }

        .card-content a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .card-content a:hover {
            color: #b89968;
        }

        .review-card {
            background: #b89968;
            color: white;
            cursor: pointer;
            border-color: #b89968;
        }

        .review-card .card-icon {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .review-card .card-content h3 {
            color: white;
        }

        .review-card .card-content p {
            color: rgba(255, 255, 255, 0.95);
        }

        .review-card:hover {
            background: #a07d54;
            border-color: #a07d54;
            box-shadow: 0 8px 25px rgba(184, 153, 104, 0.25);
        }

/* ===== FORM SECTION ===== */

.contianer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.contact-section {
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(62, 62, 62, 0.1); */
  max-width: 800px;
  width: 100%;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #c9a86a;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            color: #2d3748;
            font-size: 42px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-description {
            color: #718096;
            font-size: 15px;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        form {
          width: 900px;
          border: 1px solid black;
          padding: 50px;
          background: white;
          display: grid;
          gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            display: none;
        }

        .form-group input,
        .form-group textarea {
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 16px 20px;
            font-size: 15px;
            color: #2d3748;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c9a86a;
            background: white;
            box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a0aec0;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .input-icon {
            position: relative;
        }

        .input-icon::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            background-size: contain;
            opacity: 0.5;
        }

        button[type="submit"] {
            background: transparent;
            border: 2px solid #c9a86a;
            color: #c9a86a;
            padding: 18px 40px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        button[type="submit"]:hover {
            background: #c9a86a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 168, 106, 0.3);
        }

        button[type="submit"]::after {
            content: ' →';
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 30px;
            }
            .contianer{
 
                padding: 17px;
             }  

            .form-row {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }
        } 
        
/* 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 design */
@media (max-width: 768px) {
    .contact-card {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 80%;
    }

    .container {
      padding: 20px;
    }

    .contact-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .left-section {
      padding-right: 0;
    }

    h2 {
      font-size: 24px;
    }

    .contact-cards {
      grid-template-columns: 1fr;
    }
}

    @media (max-width: 768px) {
      .split-container {
        grid-template-columns: 1fr;
      }

      .split-item {
        padding: 3rem 2rem;
      }

      .split-item h3 {
        font-size: 1.5rem;
      }

      .split-item p {
        font-size: 1rem;
      }
    }

    /* ========================================
   RESPONSIVE MEDIA QUERIES ONLY
   Add these at the END of your style.css file
======================================== */

/* Large Tablets and Laptops (1200px) */
@media (max-width: 1200px) {
  .nav-container {
    margin: 0 2rem;
  }

  .hero {
    padding-left: 50px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .about-container,
  .ba-container {
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
  .nav-container {
    margin: 0 1.5rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero {
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }

  .ba-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ba-content-left {
    padding-right: 0;
  }

  .ba-images-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-slider-wrapper {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile and Small Tablets (900px) */
@media (max-width: 900px) {
  .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;
  }

  .navbar-right.active{
    background-color: #000;
  }

  .nav-links.active,
  .cta-buttons.active {
    transform: translateX(0);
  }

  .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;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-visual {
    height: 450px;
  }

  .main-image {
    width: 75%;
    height: 70%;
  }

  .experience-badge {
    padding: 1.5rem 2rem;
    top: 35%;
  }

  .experience-badge h3 {
    font-size: 3rem;
  }

  .small-preview {
    width: 30%;
    height: 25%;
  }

  .services-section {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .slider-wrapper {
    padding: 0 30px;
  }

  .service-card {
    min-width: 300px;
    height: 400px;
  }

  .areas-section {
    padding: 4rem 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-us {
    padding: 4rem 1.5rem;
  }

  .why-header h2 {
    font-size: 2rem;
  }

  .before-after-section {
    padding: 4rem 1.5rem;
  }

  .ba-content-left h2 {
    font-size: 2.5rem;
  }

  .ba-content-left h3 {
    font-size: 1.2rem;
  }

  .ba-images-container {
    grid-template-columns: 1fr;
  }

  .ba-slider-wrapper {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 3rem;
  }

  .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;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding: 0 20px;
    /* align-items: flex-end; */
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 15px;
  }

  .about-visual {
    height: 400px;
  }
  .small-preview {
    position: relative;
    top: 2;
    
  }

  .main-image {
    position: relative;
    width: 80%;
    height: 65%;
    margin: 10px 10px 10px 40px;
  }

  .experience-badge {
    font-size: 2.5rem;
    margin-top: 80px ;
  }

  .experience-badge h3 {
    font-size: 2.5rem;
  }

  .service-card {
    min-width: 280px;
    height: 380px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .area-image {
    height: 200px;
  }

  .why-image {
    min-height: 300px;
  }

  .ba-slider-wrapper {
    height: 280px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* 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: 45px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .show{
    display: none;
  }

  .hidden{
    display: block;
  }

  .get-in-touch-section {
                padding: 70px 5%;
            }

            .container{
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
            }

            .contact-grid{
              display: flex;
              flex-direction: column;
              align-items: center;
            }

            form{
              width: fit-content;
              padding: 0;
              border:none;
            }

            .main-title {
                font-size: 48px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .social-icon {
                width: 55px;
                height: 55px;
                font-size: 18px;
            }

  .about-section,
  .services-section,
  .areas-section,
  .why-choose-us,
  .before-after-section,
  .cta-section {
    padding: 3rem 1rem;
  }

  .about-visual {
    height: 350px;
  }

  .experience-badge {
    padding: 1rem 1.5rem;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .slider-wrapper {
    padding: 0 20px;
  }

  .service-card {
    min-width: 260px;
    height: 360px;
    padding: 2rem 1.5rem;
  }

  .service-number {
    font-size: 4rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .area-title {
    font-size: 1.2rem;
  }

  .area-description {
    font-size: 0.875rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ba-content-left h2 {
    font-size: 2rem;
  }

  .ba-content-left h3 {
    font-size: 1rem;
  }

  .ba-content-left p {
    font-size: 0.95rem;
  }

  .ba-slider-wrapper {
    height: 250px;
  }

  .ba-slider::before {
    width: 48px;
    height: 48px;
  }

  .ba-label-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-brand-content h2 {
    font-size: 1.5rem;
  }

  .footer-brand-content p {
    font-size: 0.85rem;
  }

  .footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }

  .service-card {
    min-width: 240px;
    height: 340px;
  }

  .ba-slider-wrapper {
    height: 220px;
  }

  .area-image {
    height: 180px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    align-items: center;
  }

  .nav-links,
  .cta-buttons {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .left-content {
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            
        }

        @media (max-width: 480px) {
            .get-in-touch-section {
                padding: 50px 20px;
            }

            .main-title {
                font-size: 38px;
            }

            .contact-card {
                padding: 35px 30px;
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .card-icon {
                width: 52px;
                height: 52px;
                font-size: 24px;
            }

            .section-label::before {
                width: 35px;
            }
        }

        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .left-content {
                padding-right: 0;
                text-align: center;
            }

            .section-label {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .main-title {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .get-in-touch-section {
                padding: 60px 20px;
            }

            .main-title {
                font-size: 42px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .card-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .card-content h3 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 36px;
            }

            .contact-card {
                padding: 30px 25px;
            }
        }