* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body {
  background: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  z-index: 100;
}

/* CENTER NAV */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  margin: 0 18px;
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* Nav hover animation */
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

/* LOGO */
.logo {
  height: 170px;
}

/* NAV BUTTON */
.outline-btn {
  padding: 10px 22px;
  background: white;
  border: 2px solid black;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.outline-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  background: linear-gradient(
    120deg,
    #f5f5f5,
    #e3f9bb,
    #fff2dc,
    #d5f29f
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 950px;
  z-index: 2;
}

/* HERO TITLE */
.hero-title {
  margin-top: -20px;
  font-size: clamp(110px, 9vw, 125px);
  font-weight: 1200;
  line-height: 1.03;
  max-width: 1300px;
  margin: 0 auto;
  letter-spacing: -1.5px;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* force 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* GRADIENT WORD */
.gradient-word {
  background: linear-gradient(120deg, #ff9f1c, #1e7115, #e49d22);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientFade 5s ease-in-out infinite;
}

@keyframes gradientFade {
  0% {
    filter: brightness(1);
    opacity: 0.85;
  }
  50% {
    filter: brightness(1.3);
    opacity: 1;
  }
  100% {
    filter: brightness(1);
    opacity: 0.85;
  }
}

/* BUTTONS */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.primary-btn,
.secondary-btn {
  padding: 14px 34px;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn {
  background: black;
  color: white;
  border: none;
  transition: 
    transform 0.25s ease, 
    box-shadow 0.25s ease, 
    background 0.3s ease, 
    color 0.3s ease, 
    border 0.3s ease;
}

.primary-btn:hover {
  background: white;
  color: black;
  border: 2px solid black;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.secondary-btn {
  background: transparent;
  border: 2px solid black;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* FLOATING IMAGES */
.floating-img {
  position: absolute;
  width: 760px;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25),   
    0 20px 60px rgba(0, 0, 0, 0.1);    
  transform: translateY(0);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;

  /* TWO ANIMATIONS: float + fadeIn */
  animation: float 6s ease-in-out infinite, fadeInOpacity 1s ease forwards;
}

.img-left {
  left: -15%;
  bottom: -10%;
  animation-delay: 0s, 1s; /* float delay, fade-in delay */
}

.img-right {
  right: -20%;
  top: 40%;
  animation-delay: 0.3s, 1.2s;
}

.img-back{
  right: -10%;
  top: 20%;
  opacity: 0.05;
  animation-delay: 0.6s, 1.4s;
}

.img-backleft{
  left: -20%;
  bottom: 50%;
  opacity: 0.05;
  animation-delay: 0.9s, 1.6s;
}

/* FLOAT KEYFRAMES */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* FADE-IN KEYFRAMES */
@keyframes fadeInOpacity {
  0% { opacity: 0; }
  100% { opacity: 0.15; } /* final opacity so hero-title is clearly visible */
}

/* PAGE LOAD ANIMATIONS */

/* HERO BUTTONS ANIMATION */
.hero-buttons button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

.hero-buttons .primary-btn {
  animation-delay: 0.6s;
}

.hero-buttons .secondary-btn {
  animation-delay: 0.8s;
}

/* KEYFRAMES FOR HERO ANIMATION */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* ABOUT US SECTION */
.about-us {
  margin-left:60px;
  margin-top:20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: #fefefe;
  gap: 50px;
}

.about-left {
  flex: 1.2;
}

.about-left h2 {
  font-size: clamp(80px, 6vw, 80px);
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-left .highlight {
  background: linear-gradient(120deg, #ff9f1c, #1e7115, #e49d22);
  -webkit-background-clip: text;
  color: transparent;
}

.about-left p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
}

.about-buttons {
  display: flex;
  gap: 20px;
}

.about-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Smart overlapping images */
.about-img {
  position: absolute;
  margin-right:-40px;
  margin-top:-40px;
  width: 390px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.img-top {
  top: 0;
  left: 20%;
  transform: rotate(-5deg);
}

.img-middle {
  top: 30%;
  left: 40%;
  transform: rotate(5deg);
}

.img-bottom {
  top: 60%;
  left: 15%;
  transform: rotate(-2deg);
}

/* Hover effect on images */
.about-img:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .about-us {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-right {
    margin-bottom: 50px;
    min-height: 300px;
  }

  .about-img {
    width: 180px;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.black-text{
    font-size: 4vh;
    align-items: center;
    margin-left:100vh;
    background-color: rgb(0, 0, 0);
    padding: 20px;
}

/* PRICING SECTION */
.pricing {
  padding: 120px 50px;
  background: #fdfdfd;
  text-align: center;
  margin-top: -100px;
}

.pricing-header h2 {
  font-size: 96px;
  font-weight: 900;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

.pricing-category {
  margin-bottom: 100px;
}

/* CORPORATE DIVIDER */
.corporate-divider {
  width: 100%;
  height: 220px;
  background: black;
  margin: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Flow animation from right to left */
.corporate-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  animation: slideFlow 6s linear infinite;
}

/* Text inside divider */
.corporate-divider h3 {
  font-size: 64px;
  font-weight: 900;
  color: white;
  z-index: 2;
  letter-spacing: -1px;
}

/* Flow keyframes */
@keyframes slideFlow {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.category-title {
  font-size: 74px;
  font-weight: 800;
  margin-bottom: 40px;
}

.category-title .highlight {
  background: linear-gradient(120deg, #ff9f1c, #1e7115, #e49d22);
  -webkit-background-clip: text;
  color: transparent;
}

.card-name {
  background-color: rgb(244, 242, 242);
  border-radius: 30px;
  padding: 10px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.pricing-card {
  background: #fff;
  width: 300px;
  padding: 40px 30px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.pricing-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.enquire-btn {
  padding: 12px 28px;
  background: black;
  color: white;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.enquire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #222;
}

.pricing-card .price {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.price {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 10px; /* slightly less to fit the once-off text */
}

.price span.once-off {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ff9f1c; /* orange, you can change to green if you like */
  margin-top: 5px;
}


.build-quote-btn-container {
  margin-top: 40px;
}

.build-quote-btn {
  margin-top:30px;
  padding: 14px 40px;
  background: black;
  color: white;
  border: none;
  border-radius: 35px;
  font-weight: 600;
  font-size: 2vh;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.build-quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #222;
}


/* Animate cards on scroll */
.pricing-card:nth-child(1) { animation: fadeSlideUp 1s ease forwards; animation-delay: 0.3s; }
.pricing-card:nth-child(2) { animation: fadeSlideUp 1s ease forwards; animation-delay: 0.5s; }
.pricing-card:nth-child(3) { animation: fadeSlideUp 1s ease forwards; animation-delay: 0.7s; }
.pricing-card:nth-child(4) { animation: fadeSlideUp 1s ease forwards; animation-delay: 0.9s; }

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* PROJECTS & REVIEWS */
.projects-reviews {
  margin-top: -160px;
  padding: 140px 50px;
  background: #ffffff;
  text-align: center;
}

/* HEADER */
.section-header h2 {
  font-size: 90px;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 80px;
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 140px;
}

.review-card {
  background: #f9f9f9;
  padding: 40px 30px 50px;
  border-radius: 25px;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* AVATAR */
.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: black;
  color: white;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 25px;
}

/* STARS */
.stars {
  font-size: 18px;
  margin-top: 20px;
  color: #ff9f1c;
}

/* REVIEW TEXT */
.review-text {
  margin: 20px 0;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.review-name {
  font-weight: 700;
  color: #000;
}

/* PORTFOLIO */
.portfolio-title {
  margin-top:-60px;
  font-size: 25px;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* PORTFOLIO CARD */
.portfolio-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* PORTFOLIO ENTRY ANIMATION */
.portfolio-card {
  opacity: 0;
  transform: translateY(40px);
  animation: portfolioFade 0.9s ease forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.2s; }
.portfolio-card:nth-child(2) { animation-delay: 0.4s; }
.portfolio-card:nth-child(3) { animation-delay: 0.6s; }
.portfolio-card:nth-child(4) { animation-delay: 0.8s; }
.portfolio-card:nth-child(5) { animation-delay: 1s; }
.portfolio-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes portfolioFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CORPORATE DIVIDER */
.portfolio-divider {
  width: 100%;
  height: 180px;
  background: linear-gradient(120deg, #ff9f1c, #1e7115, #e49d22);
  margin: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Flow animation from right to left */
.portfolio-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(33, 78, 1, 0.08),
    transparent
  );
  animation: slideFlow 6s linear infinite;
}

/* Text inside divider */
.portfolio-divider h3 {
  font-size: 64px;
  font-weight: 900;
  color: white;
  z-index: 2;
  letter-spacing: -1px;
}

/* Flow keyframes */
@keyframes slideFlow {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* CONTACT SECTION */
.contact {
  padding: 140px 60px;
  background: #fff;
  margin-top:-90px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-content h2 {
  font-size: 96px;
  font-weight: 900;
  margin-bottom: 20px;
   line-height: 1;
}

.contact-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 620px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: black;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}

.contact-image{
    margin-left:20px;
    height: 320px;
    margin-top:-410px;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* FOOTER */
.footer {
  background: black;
  color: white;
  padding: 80px 60px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #bbb;
  max-width: 420px;
}

.footer-socials {
  display: flex;
  color: white;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover {
  text-decoration: none;
  transform: translateY(-6px);
  background: linear-gradient(120deg, #ff9f1c, #1e7115);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  cursor: pointer;
}

.whatsapp-float i {
  line-height: 60px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* TABLET MEDIA QUERIES (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
    height: 70px;
  }

  .logo {
    height: 120px;
  }

  .nav-center a {
    margin: 0 12px;
    font-size: 14px;
  }

  .outline-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(70px, 8vw, 90px);
  }

  .floating-img {
    width: 500px;
  }

  .img-left {
    left: -20%;
  }

  .img-right {
    right: -25%;
  }

  .about-us {
    margin-left: 30px;
    padding: 80px 30px;
  }

  .about-left h2 {
    font-size: 60px;
  }

  .contact-content h2 {
    font-size: 70px;
  }
}

/* MOBILE MEDIA QUERIES (max-width: 768px) */
@media screen and (max-width: 768px) {
  
  /* NAVBAR MOBILE */
  .navbar {
    padding: 10px 20px;
    height: auto;
    min-height: 100px;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    height: 100px;
    order: 1;
  }

  .outline-btn {
    padding: 8px 16px;
    font-size: 12px;
    order: 2;
  }

  .nav-center {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    order: 3;
    margin-top: 15px;
    text-align: center;
  }

  .nav-center a {
    margin: 0 10px;
    font-size: 13px;
  }

  /* HERO SECTION MOBILE */
  .hero {
    min-height: 80vh;
    padding: 120px 20px 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 60px);
    margin-top: 0;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Hide floating images on mobile or make them subtle */
  .floating-img {
    width: 300px;
    opacity: 0.08 !important;
  }

  .img-left {
    left: -30%;
    bottom: 20%;
  }

  .img-right {
    right: -30%;
    top: 10%;
  }

  .img-back,
  .img-backleft {
    display: none;
  }

  /* ABOUT US MOBILE */
  .about-us {
    margin-left: 0;
    margin-top: 0;
    padding: 60px 20px;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-left h2 {
    font-size: clamp(36px, 10vw, 50px);
    text-align: center;
  }

  .about-left p {
    font-size: 16px;
    text-align: center;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-buttons button {
    width: 100%;
    max-width: 280px;
  }

  .about-right {
    min-height: 400px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-img {
    width: 280px;
  }

  .img-top {
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    top: 0;
  }

  .img-middle {
    left: 50%;
    transform: translateX(-30%) rotate(5deg);
    top: 25%;
  }

  .img-bottom {
    left: 50%;
    transform: translateX(-70%) rotate(-2deg);
    top: 50%;
  }

  /* PRICING MOBILE */
  .pricing {
    padding: 80px 20px;
    margin-top: -50px;
  }

  .pricing-header h2 {
    font-size: clamp(50px, 12vw, 70px);
  }

  .pricing-header p {
    font-size: 16px;
  }

  .category-title {
    font-size: clamp(40px, 10vw, 60px);
  }

  .pricing-cards {
    gap: 30px;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .build-quote-btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .corporate-divider {
    height: 150px;
    margin: 80px 0;
  }

  .corporate-divider h3 {
    font-size: clamp(32px, 8vw, 48px);
    text-align: center;
    padding: 0 20px;
  }

  /* PROJECTS & REVIEWS MOBILE */
  .projects-reviews {
    margin-top: -80px;
    padding: 80px 20px;
  }

  .section-header h2 {
    font-size: clamp(50px, 12vw, 70px);
  }

  .section-header p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }

  .review-card {
    padding: 35px 25px 40px;
  }

  .portfolio-divider {
    height: 120px;
    margin: 80px 0;
  }

  .portfolio-divider h3 {
    font-size: clamp(28px, 8vw, 40px);
    padding: 0 20px;
    text-align: center;
  }

  .portfolio-title {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* CONTACT MOBILE */
  .contact {
    padding: 80px 20px;
    margin-top: -60px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content h2 {
    font-size: clamp(40px, 12vw, 60px);
    text-align: center;
  }

  .contact-content p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto 30px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-image {
    margin-left: 0;
    margin-top: 0;
    height: auto;
    order: -1;
  }

  .contact-image img {
    margin-bottom: 20px;
  }

  /* FOOTER MOBILE */
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  /* WhatsApp Button Mobile */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .whatsapp-float i {
    line-height: 50px;
  }
}

/* SMALL MOBILE DEVICES (max-width: 480px) */
@media screen and (max-width: 480px) {
  
  .navbar {
    padding: 10px 15px;
    min-height: 95px;
  }

  .logo {
    height: 85px;
  }

  .outline-btn {
    padding: 6px 14px;
    font-size: 11px;
  }

  .nav-center {
    margin-top: 12px;
  }

  .nav-center a {
    margin: 0 7px;
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(32px, 11vw, 45px);
  }

  .hero-buttons {
    gap: 12px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .about-left h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-left p {
    font-size: 14px;
  }

  .about-img {
    width: 220px;
  }

  .pricing-header h2 {
    font-size: clamp(40px, 11vw, 55px);
  }

  .category-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .pricing-card {
    padding: 30px 20px 40px;
  }

  .pricing-card h4 {
    font-size: 20px;
  }

  .price {
    font-size: 48px;
  }

  .corporate-divider h3 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .section-header h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .contact-content h2 {
    font-size: clamp(32px, 11vw, 50px);
  }

  .footer-brand h3 {
    font-size: 24px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* VERY SMALL DEVICES (max-width: 360px) */
@media screen and (max-width: 360px) {
  
  .navbar {
    padding: 8px 10px;
    min-height: 150px;
  }

  .logo {
    height: 75px;
  }

  .outline-btn {
    padding: 5px 12px;
    font-size: 10px;
  }

  .nav-center a {
    margin: 0 5px;
    font-size: 10px;
  }

  .hero {
    padding: 70px 15px 30px;
  }

  .hero-title {
    font-size: clamp(28px, 10vw, 38px);
  }

  .about-left h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .about-img {
    width: 180px;
  }

  .pricing-header h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .category-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .section-header h2 {
    font-size: clamp(35px, 10vw, 52px);
  }

  .contact-content h2 {
    font-size: clamp(28px, 10vw, 44px);
  }
}