/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body {
  background: linear-gradient(180deg, #87cefa 0%, #1e3c72 100%);
  color: #e0e6f0;
  min-height: 100vh;
}




/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 60px;
  background: rgba(52, 73, 94, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  z-index: 1000;
}

.nav-quote {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-align: center;
  flex: 1;
}

/* LOGO – TYPOGRAPHY UPDATED ONLY */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f39c12;
}

.logo-bottom {
  font-size: 12px;
  letter-spacing: 6px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* NAV BUTTON */
.nav-btn {
  text-decoration: none;
  background: #f39c12;
  color: #2c3e50;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* GOLD HOVER */
.gold-hover:hover {
  box-shadow: 0 0 14px rgba(243,156,18,0.85);
  background: #d78c0a;
  color: #fff;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-box {
  background: rgba(52, 73, 94, 0.9);
  padding: 46px 48px;
  max-width: 620px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  z-index: 2;
}


/* HERO TEXT */
.hero-box h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #f39c12;
}

.hero-box p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 25px;
  color: #dcdde1;
  line-height: 1.4;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #f39c12;
  color: #2c3e50;
  border-radius: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icon img {
  width: 36px;
  height: 36px;
  opacity: 0.85;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.3) translateY(-6px);
  filter: drop-shadow(2px 4px 8px rgba(243,156,18,0.7));
}

/* SIDE ADS – OUTSIDE HERO BOX */
.side-ads {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.left-ads {
  left: 80px;
}

.right-ads {
  right: 80px;
}

.ad-slot {
  width: 220px;
  height: 120px;
  background: rgba(52, 73, 94, 0.7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 60px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  margin-bottom: 15px;
  color: #f39c12;
  font-weight: 700;
}

.section p {
  color: #dcdde1;
  line-height: 1.5;
  font-size: 1.05rem;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  padding-bottom: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #3b5367;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 18px rgba(243,156,18,0.7);
}

/* SERVICE OPEN BUTTON */
.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 26px;
  background: #f39c12;
  color: #2c3e50;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* FOOTER */
footer {
  background: #34495e;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #dcdde1;
}

/* FORM PAGE */
.form-container {
  background-color: rgba(47, 62, 80, 0.95);
  padding: 40px 35px;
  border-radius: 15px;
  max-width: 420px;
  margin: 120px auto;
  text-align: center;
}

.form-container h2,
.company-name {
  color: #f39c12;
  font-weight: 700;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: none;
}

#thank-you-message {
  display: none;
  margin-top: 20px;
  color: #f39c12;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* Tablet & Mobile */
@media (max-width: 1024px) {

  .hero {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .side-ads {
    position: static !important;
    transform: none !important;
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
  }

  .left-ads,
  .right-ads {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ad-slot {
    width: 180px;
    height: 100px;
    font-size: 14px;
  }
}

/* Mobile refinement */
@media (max-width: 600px) {

  .side-ads {
    flex-direction: column;
    align-items: center;
  }

  .ad-slot {
    width: 90%;
    max-width: 280px;
  }

  .hero-box {
    padding: 28px 22px;
    max-width: 92%;
  }

  .hero-box h1 {
    font-size: 1.9rem;
  }
}
