* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
   background:
   linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url("../assets/images/hero/hero.jpg") center/cover no-repeat;
}

.hero-inner {
  max-width: 650px;
  padding: 0 90px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
 font-weight: 600;
  letter-spacing: -0.4px;


}

.hero p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #444;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn {
  margin-right: 15px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #222;
  font-weight: 400;
}

nav .cta {
  border-bottom: 2px solid #c9a24d;
}

.section {
  padding: 80px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.section h2 + .grid-3 {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 14px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
}


.card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;
  border-top: 3px solid #c9a24d;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
   /* border-top: 3px solid #c9a24d;
  transition: 0.3s ease; */
}


.btn {
  display: inline-block;
  padding: 12px 28px;
  /* background: #c9a24d; */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(135deg, #c9a24d, #24241f);
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #eee;
}

/* Mobile */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 20px;
  }
  nav a {
    margin: 10px;
  }
  .section {
    padding: 50px 20px;
  }
}
.section {
  padding: 70px 90px;
}

.section > h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.section > p {
  max-width: 700px;
  color: #555;
  margin-bottom: 50px;
}
.section h2 {
  font-size: 26px;
  margin: 60px 0 30px;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: 2px;
  background: #c9a24d;
}
/* .section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a24d;
  margin-top: 10px;
} */


.portfolio-grid {
  margin-top: 50px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.contact-form {
  max-width: 600px;
  margin-top: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.map {
  margin-top: 60px;
  height: 300px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}

.final-cta {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.final-cta p {
  margin: 15px 0 30px;
  color: #ccc;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px 90px;
  text-align: center;
  border-bottom: 1px solid #eee;
  /* background: #f9f9f9; */
  margin-top: -10px;
  padding-top: 40px;
 background: linear-gradient(
    90deg,
    #f3ead7,
    #ffffff
  );


}

.trust-strip div {
  font-weight: 500;
}


@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-inner {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 50px 20px;
  }

  .grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {

  .header {
    padding: 15px 20px;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 8px 10px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  .trust-strip {
    padding: 30px 20px;
    gap: 15px;
  }

  .trust-strip div {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  .card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .card {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
}

@media (max-width: 768px) {

  .portfolio-card img {
    height: 220px;
  }
}
@media (max-width: 768px) {

  .contact-form {
    margin-top: 30px;
  }

  .map {
    height: 220px;
  }
}
@media (max-width: 768px) {

  .final-cta {
    padding: 60px 20px;
  }

  .final-cta h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }
}
/* about sec updates */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.about-content h1 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 260px;
  }
}

.section h1,
.section h2 {
  position: relative;
}

.section h1::after,
.section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #c9a24d; /* gold */
  margin-top: 12px;
  border-radius: 2px;
}
/* this placeholder- to be deleted */
.portfolio-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ph-card {
  height: 180px;
  background: #f3f3f3;
  border-radius: 10px;
}
