/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Roboto', sans-serif;
  color: #222;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  background: #0b1b33;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

.logo img {
  width: 60px;       /* BIG LOGO */
  height: auto;
}


nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.quote-btn {
  background: #d4af37;
  padding: 8px 16px;
  border-radius: 4px;
  color: #000;
}

/* HERO */

.hero {
  position: relative; /* ADD THIS */
  height: 80vh;
  background: url("images/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 1;
}


.hero-content {
  position: relative;   /* ADD */
  z-index: 2;           /* ADD */
  color: #fff;
  padding: 85px 90px;   /* INCREASE */
  margin-left: 80px;    /* INCREASE */
  max-width: 920px;     /* INCREASE */
}



.hero h1 {
  font-size: 64px;      /* BIGGER = premium */
  line-height: 1.12;    /* Tighter like luxury brands */
  letter-spacing: 0.4px;
  max-width: 820px;
}


.hero h1 span {
  display: block;
  font-size: 46px;
  font-weight: 500;
  margin-top: 8px;
}


.hero-features {
  font-size: 22px;        /* slightly bigger */
  margin-top: 36px;
  margin-bottom: 44px;   /* 👈 THIS CREATES BREATHING SPACE */
  line-height: 1.9;      /* more premium spacing */
  max-width: 760px;
}



/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.primary {
  background: #d4af37;
  color: #000;
}

.secondary {
  border: 1px solid #d4af37;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 70px 60px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.sub-text {
  color: #666;
  margin-bottom: 40px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
  border: 1px solid #d4af37;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 15px 0 5px;
}

.service-card:hover h3 {
  color: #d4af37;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* PROJECTS */
.dark {
  background: #0b1b33;
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.project-card:hover img {
  transform: scale(1.25);
}



.project-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  color: #fff;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card:hover .project-info {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

/* MOBILE */
@media (max-width: 900px) {

  .navbar {
    flex-direction: column;
    padding: 12px 20px;
    gap: 12px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 6px 0;
  }

  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-content {
    margin: 0 auto;
    padding: 25px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-features {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
  }

  .section {
    padding: 50px 20px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin-top: 20px;
  }
}


/* ===== ABOUT SECTION ===== */

.about-section {
  background: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-text {
  text-align: left;
}

.about-intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-points li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.about-vision {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-image img {
  width: 100%;
  max-width: 420px;   /* reduced from 700px */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}


/* MOBILE */
@media (max-width: 900px) {
  .about-image {
    display: none;
  }
}




/* ABOUT FOOTER (SOCIAL + COPYRIGHT) */
.about-footer {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.social-links {
  margin-bottom: 12px;
}

.social-links a {
  margin-right: 18px;
  text-decoration: none;
  font-weight: 500;
  color: #0b1b33;
  font-size: 14px;
}

.social-links a:hover {
  color: #d4af37; /* gold hover */
}

.copyright {
  font-size: 13px;
  color: #777;
}

/* ABOUT FOOTER */
.about-footer {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.social-links a {
  margin-right: 18px;
  text-decoration: none;
  font-weight: 500;
  color: #0b1b33;
  font-size: 14px;
}

.social-links i {
  margin-right: 6px;
  color: #d4af37;
}

.social-links a:hover {
  color: #d4af37;
}

.copyright {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

/* PROJECT CTA */
.projects-cta {
  margin-top: 40px;
  text-align: center;
}

.project-category {
  margin: 60px 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  text-align: left;
  color: #fff;
}

.projects-grid img {
  border-radius: 12px;
  cursor: pointer;
}

/* ===== LIGHTBOX (FULL IMAGE VIEW) ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ===============================
   MOBILE ABOUT SECTION FIX
   =============================== */

@media (max-width: 900px) {

  .about-section {
    padding: 40px 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-text {
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .about-text h2,
  .about-text h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-points {
    padding-left: 0;
    margin: 24px 0;
  }

  .about-points li {
    list-style: none;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .about-footer {
    text-align: center;
    margin-top: 30px;
  }

  .social-links a {
    display: inline-block;
    margin: 6px 10px;
    font-size: 14px;
  }

}
