/* ===== Company Profile Section ===== */
.profile-section {
  background: #f8fafc;
  padding: 0 0 48px 0;
}
.profile-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 950px;
  margin: 0 auto;
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  text-align: left;
}
.profile-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}
.profile-accent {
  width: 70px;
  height: 5px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0.7rem 0 1.3rem 0;
  display: block;
}
.profile-desc {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.8;
}
@media (max-width: 700px) {
  .profile-block {
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
}
/* ===== Our Team Section ===== */
.team-section {
  background: #fff;
  padding: 56px 0 48px 0;
  text-align: center;
}
.team-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.team-accent {
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.team-desc {
  color: #888;
  font-size: 1.13rem;
  margin-bottom: 2.2rem;
}
.team-row {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.team-card {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 290px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.team-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.03);
}
.team-img {
  width: 100%;
  max-width: 290px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1.1rem;
}
.team-name {
  font-size: 1.18rem;
  font-weight: 600;
  color: #22223b;
  margin-bottom: 0.3rem;
}
.team-role {
  color: #8a8a8a;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .team-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .team-card {
    max-width: 100%;
  }
}
/* ===== About Section ===== */
.about-section {
  background: #f8fafc;
  padding: 56px 0 48px 0;
}
.about-overview-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 950px;
  margin: 0 auto;
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  text-align: left;
}
.about-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}
.about-accent {
  width: 70px;
  height: 5px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0.7rem 0 1.3rem 0;
  display: block;
}
.about-desc {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.8;
}
.about-highlight {
  background: #fffbe6;
  color: #b59f00;
  padding: 0 0.2em;
  border-radius: 3px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .about-overview-block {
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
}
/* ===== Modern Footer ===== */
.footer {
  background: #181818;
  color: #e2e2e2;
  padding: 0;
  margin-top: 0;
  font-size: 1.05rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.7rem 0 1.2rem 0;
}
.footer-brand-block {
  flex: 2 1 340px;
  min-width: 260px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.footer-logo-icon {
  font-size: 2.1rem;
  color: #f4ec00;
  display: inline-block;
}
.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.footer-desc {
  color: #bdbdbd;
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e2e2e2;
  font-size: 1.05rem;
}
.footer-contact-list a {
  color: #f4ec00;
  text-decoration: none;
  word-break: break-all;
}
.footer-contact-list a:hover {
  text-decoration: underline;
}
.footer-icon {
  font-size: 1.18rem;
  color: #f4ec00;
  display: inline-block;
}
.footer-social-block {
  flex: 1 1 180px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.footer-social-row {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
.footer-social svg {
  display: block;
  width: 30px;
  height: 30px;
  transition: transform 0.18s;
}
.footer-social:hover svg {
  transform: scale(1.13) rotate(-7deg);
}
.footer-bottom {
  border-top: 1px solid #232323;
  padding: 1.1rem 0 0.7rem 0;
  text-align: center;
}
.footer-copyright {
  color: #bdbdbd;
  font-size: 1.01rem;
  margin: 0;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;
    padding: 2.2rem 0 1.2rem 0;
  }
  .footer-social-block {
    align-items: flex-start;
    margin-top: 1.2rem;
  }
}
/* ===== Contact Map Section ===== */
.contact-map-section {
  background: #fff;
  padding: 0 0 48px 0;
}
.contact-map-embed {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.contact-map-embed iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .contact-map-embed {
    max-width: 100%;
  }
  .contact-map-section {
    padding-bottom: 28px;
  }
}
/* ===== Contact Section ===== */
.contact-section {
  background: #fff;
  padding: 56px 0 48px 0;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 340px;
  margin-top: 2.5rem;
}
.contact-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 0.2rem;
  margin-top: 1.5rem;
}
.contact-detail {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.contact-form {
  flex: 2 1 480px;
  min-width: 320px;
  background: #fafafa;
  border-radius: 10px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #22223b;
  text-align: center;
  margin-bottom: 0.3rem;
}
.contact-form-accent {
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.contact-form-desc {
  color: #888;
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 1.7rem;
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form-group {
  position: relative;
  margin-bottom: 0.7rem;
}
.contact-input {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: #f4f4f4;
  font-size: 1.08rem;
  color: #22223b;
  margin-bottom: 0.1rem;
  outline: none;
  transition: box-shadow 0.15s, background 0.15s;
}
.contact-input:focus {
  background: #fffbe6;
  box-shadow: 0 0 0 2px var(--primary);
}
.contact-form-message {
  margin-top: 0.7rem;
}
.contact-form textarea.contact-input {
  min-height: 110px;
  resize: vertical;
}
.contact-error {
  display: none;
  color: #d32f2f;
  font-size: 0.98rem;
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form-group.invalid .contact-error {
  display: block;
}
/* Blue button for SEND MESSAGE */
.contact-submit {
  margin-top: 1.2rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 1.1rem 0;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.contact-submit:hover {
  background: #1742a0;
  color: #fff;
}
@media (max-width: 900px) {
  .contact-row {
    flex-direction: column;
    gap: 2.2rem;
  }
  .contact-form {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
}
/* ===== Why Choose Us Section ===== */
.why-choose-section {
  background: #fff;
  padding: 56px 0 48px 0;
}
.why-choose-row {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.why-choose-image {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.why-choose-content {
  flex: 1 1 420px;
  min-width: 320px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-choose-title {
  font-size: 2rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 0.3rem;
}
.why-choose-accent {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.why-choose-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.why-choose-item {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.why-choose-item:focus-within, .why-choose-item:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.why-choose-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13rem;
  font-weight: 500;
  color: #22223b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
}
.why-choose-question[aria-expanded="true"] {
  background: #f4ec00;
  color: #22223b;
}
.why-choose-icon {
  color: #4caf50;
  font-size: 1.2rem;
  margin-right: 0.7rem;
}
.why-choose-arrow {
  font-size: 1.1rem;
  margin-left: 1.2rem;
  color: #bdbdbd;
  transition: transform 0.2s;
}
.why-choose-question[aria-expanded="true"] .why-choose-arrow {
  transform: rotate(180deg);
  color: #22223b;
}
.why-choose-answer {
  display: none;
  padding: 0 1.2rem 1.1rem 2.2rem;
  color: #444;
  font-size: 1.01rem;
  background: #fff;
}
.why-choose-item.open .why-choose-answer {
  display: block;
}
@media (max-width: 900px) {
  .why-choose-row {
    flex-direction: column;
    gap: 2rem;
  }
  .why-choose-content {
    padding: 2rem 1.1rem 1.5rem 1.1rem;
  }
}
/* ===== Enhanced Customer Analysis & Marketing Plan Section ===== */
.analysis-marketing-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  display: inline-block;
}
.analysis-marketing-accent {
  width: 60px;
  height: 5px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0.5rem 0 1.1rem 0;
  display: block;
}
.highlight {
  background: #fffbe6;
  color: #b59f00;
  padding: 0 0.2em;
  border-radius: 3px;
  font-weight: 600;
}
.analysis-marketing-card {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.analysis-marketing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
/* ===== Customer Analysis & Marketing Plan Section ===== */
.analysis-marketing-section {
  background: #f4f6fb;
  padding: 48px 0 40px 0;
}
.analysis-marketing-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.analysis-marketing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.2rem 2rem 1.7rem 2rem;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 520px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.analysis-marketing-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.analysis-marketing-desc {
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .analysis-marketing-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .analysis-marketing-card {
    align-items: stretch;
  }
}
/* ===== Vision & Mission Section ===== */
.vision-mission-section {
  background: #f8fafc;
  padding: 56px 0 40px 0;
}
.vision-mission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.vision-mission-text {
  flex: 1 1 340px;
  min-width: 280px;
}
.vision-mission-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.vision-mission-desc {
  font-size: 1.13rem;
  color: #374151;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.vision-mission-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.vision-mission-image img {
  max-width: 370px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .vision-mission-row {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
  }
  .vision-mission-image {
    justify-content: center;
  }
}
/* ===== Vision/Mission Section ===== */
.vision-section {
  background: #f8fafc;
  padding: 48px 0 40px 0;
}
.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vision-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark);
}
.vision-text {
  font-size: 1.18rem;
  color: #374151;
  line-height: 1.7;
}
/* ===== Services Section ===== */
.services-section {
  padding: 48px 0 32px 0;
  background: #fff;
}
.services-cards {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 24px 24px 32px 24px;
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.service-img {
  width: 100%;
  max-width: 370px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}
.service-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0.8rem 0 0.5rem 0;
  text-align: center;
}
.service-desc {
  color: #6b7280;
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
/* ===== Variables & Resets ===== */
:root{
  --primary:#f4ec00;      /* Construction yellow */
  --dark:#0f172a;         /* Deep navy */
  --muted:#a4aebc;        /* Slate */
  --white:#ffffff;
  --glass:rgba(15,23,42,.65);
  --shadow:0 12px 30px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Noto Sans",sans-serif;
  color:var(--dark);
  background:#fff;
  line-height:1.6;
}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin-inline:auto}
h1,h2{line-height:1.2;margin:0 0 .5rem}

/* ===== Navbar ===== */
.header{
  position:sticky;top:0;z-index:1000;
  /* Use a dark, semi-transparent gradient for better image blending */
  background: linear-gradient(90deg, rgba(15,23,42,0.85) 60%, rgba(40,40,40,0.65) 100%);
  backdrop-filter: saturate(160%) blur(10px);
}
.nav-container{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.6rem;color:#fff;text-decoration:none}
.brand-mark{font-size:1.3rem}
.brand-name{font-weight:800;letter-spacing:.5px}
.nav{display:flex}
.nav-list{display:flex;gap:1rem;list-style:none;margin:0;padding:0}
  .nav-link{
    color:#e2e8f0;
    text-decoration:none;
    padding:.5rem .7rem;
    border-radius:.4rem;
    transition: color 0.2s, background 0.2s;
  }
  .nav-link:hover {
    background: none;
    color: var(--primary);
    /* Only color changes, no box appears */
  }
.nav-toggle{display:none;background:none;border:none;cursor:pointer}
.nav-toggle .bar{display:block;width:24px;height:2px;background:#fff;margin:5px 0}

/* Dropdown styles for navbar */
.nav-link-dropdown {
  position: relative;
}

.nav-link-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background: #1e293b;
  border: 1px solid #334155;
  z-index: 1000;
  margin-top: 8px;
  padding: 0;
  list-style: none;
  border-radius: 4px;
}

.nav-link-dropdown:hover .dropdown-menu,
.nav-link-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #f1f5f9;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: #334155;
  color: #38bdf8;
}

/* Dropdown arrow color */
.nav-link-dropdown > .nav-link.active {
  color: #38bdf8;
}
/* ===== Hero / Slider ===== */
.hero{position:relative;height:100vh;min-height:520px;overflow:hidden}
.hero-slide{
  position:absolute;inset:0;background:#000 center/cover no-repeat;
  background-image:var(--bg);
  opacity:0;transform:scale(1.02);
  transition:opacity .7s ease, transform 1.2s ease;
}
.hero-slide.active{
  opacity:1;transform:scale(1);
  animation:kenburns 16s ease-in-out infinite alternate;
  .vision-content {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 2.8rem 2.2rem 2.2rem 2.2rem;
    text-align: center;
    position: relative;
  }
  .vision-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  .vision-accent {
    width: 70px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
    margin: 0.7rem auto 1.3rem auto;
    display: block;
  }
  .vision-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--dark);
    letter-spacing: 0.5px;
  }
  .vision-text {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.8;
    margin-top: 0.7rem;
  }
}
@keyframes kenburns{
  0%{transform:scale(1)}
  100%{transform:scale(1.06)}
}
.hero .overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.55));
}
.hero-content{
  position:relative;z-index:2;color:#fff;height:100%;
  display:flex;flex-direction:column;justify-content:center;
  max-width:min(900px,90%);
}
.title{
  font-weight:800;letter-spacing:.04em;
  font-size:clamp(2rem,5vw,3.4rem);
  opacity:0;transform:translateY(18px);
}
.subtitle{
  color:#e2e8f0;margin:.4rem 0 1rem;
  font-size:clamp(1rem,2.4vw,1.25rem);
  opacity:0;transform:translateY(18px);
}
.accent-line{
  width:140px;height:8px;background:var(--primary);border-radius:4px;
  box-shadow:0 6px 16px rgba(244,180,0,.3);
  opacity:0;transform:scaleX(.6);transform-origin:left;
  margin:.6rem 0 1rem;
}
.cta-row{display:flex;gap:.8rem;flex-wrap:wrap;opacity:0;transform:translateY(18px)}
/* Triggered per active slide */
.hero-slide.active .title{animation:fadeUp .7s .15s forwards}
.hero-slide.active .subtitle{animation:fadeUp .7s .28s forwards}
.hero-slide.active .accent-line{animation:revealX .6s .42s forwards}
.hero-slide.active .cta-row{animation:fadeUp .7s .54s forwards}

@keyframes fadeUp{
  to{opacity:1;transform:translateY(0)}
}
@keyframes revealX{
  to{opacity:1;transform:scaleX(1)}
}

/* Controls + dots */
.hero-control{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.16);
  border:none;color:#fff;width:44px;height:44px;border-radius:50%;
  cursor:pointer;z-index:3
}
.hero-control:hover{background:rgba(255,255,255,.25)}
.hero-control.prev{left:1rem}
.hero-control.next{right:1rem}
.hero-dots{position:absolute;right:22px;bottom:20px;display:flex;gap:.45rem;z-index:3}
.hero-dots button{
  width:10px;height:10px;border-radius:50%;border:none;cursor:pointer;
  background:rgba(255,255,255,.55);
}
.hero-dots button.active{background:var(--primary)}

/* Buttons */
.btn{
  display:inline-block;border:2px solid transparent;border-radius:.5rem;
  padding:.85rem 1.1rem;font-weight:700;text-decoration:none;
  transition:.2s ease;
}

.btn-primary{background:var(--primary);color:#111}
.btn-primary:hover{filter:brightness(.95)}
.btn-ghost{background:transparent;border-color:#fff;color:#fff}
.btn-ghost:hover{background:#fff;color:#111}

/* Small button modifier */
.btn-small {
  padding: 0.45rem 0.8rem;
  font-size: 0.95rem;
}

/* Sections under hero */
.section{padding:72px 0}
.eyebrow{
  display:inline-block;text-transform:uppercase;letter-spacing:.1em;
  color:var(--primary);font-weight:700;margin-bottom:.45rem;
}

/* Footer */
.footer{background:#0b1220;color:#cbd5e1;padding:22px 0}
.footer-row{display:flex;align-items:center;justify-content:space-between}
.footer .to-top{color:#e2e8f0;text-decoration:none;border:1px solid #334155;padding:.2rem .5rem;border-radius:.4rem}
.footer .to-top:hover{color:var(--primary);border-color:var(--primary)}

/* ===== Plan Page Styles ===== */
.plan-main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.plan-section {
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.plan-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.plan-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #334155;
  margin: 1.2rem 0 0.5rem 0;
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem 0;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  font-size: 1rem;
}
.plan-table th, .plan-table td {
  border: 1px solid #cbd5e1;
  padding: 0.7rem 0.6rem;
  text-align: left;
}
.plan-table th {
  background: #e0e7ef;
  color: #22223b;
  font-weight: 700;
}
.plan-table tr:nth-child(even) td {
  background: #f8fafc;
}
.plan-table tr:nth-child(odd) td {
  background: #f1f5f9;
}

/* ===== Enhanced Responsive Styles ===== */
@media (max-width: 700px) {
  body {
    font-size: 1rem;
    padding: 0;
  }
  .container, .nav-container {
    flex-direction: column;
    padding: 0.7rem 0.5rem;
  }
  .header {
    padding: 0.5rem 0;
  }
  .brand {
    font-size: 1.1rem;
    gap: 0.3rem;
  }
  .nav-list {
    gap: 0.2rem;
    padding: 0.5rem 0;
  }
  .nav-link, .nav-link-dropdown > .nav-link {
    padding: 0.7rem 1rem;
    font-size: 1.08rem;
  }
  .dropdown-menu {
    min-width: 100vw;
    left: -1rem;
    border-radius: 0 0 8px 8px;
  }
  .plan-main {
    padding: 0.5rem;
    margin: 1rem 0.2rem;
  }
  .plan-section {
    padding: 1rem 0.5rem;
  }
  .plan-title {
    font-size: 1.15rem;
  }
  .plan-table th, .plan-table td {
    padding: 0.4rem 0.3rem;
    font-size: 0.98rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 0 0.7rem 0;
  }
  .footer-social-row {
    gap: 0.5rem;
  }
}

@media (max-width: 500px) {
  .plan-table, .plan-table thead, .plan-table tbody, .plan-table th, .plan-table td, .plan-table tr {
    display: block;
    width: 100%;
  }
  .plan-table th {
    background: #e0e7ef;
    font-size: 1rem;
  }
  .plan-table td {
    font-size: 0.97rem;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    padding: 0.4rem 0.2rem;
  }
  .plan-table tr {
    margin-bottom: 0.7rem;
    border-radius: 6px;
    background: #f8fafc;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  }
}

/* ==========================================================================
   ===== Projects Gallery Page Styles =====
   ========================================================================== */

/* Hero Banner */
.projects-hero {
  position: relative;
  background: linear-gradient(135deg, #0b1220 0%, #1e293b 60%, #0f172a 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
  overflow: hidden;
}
.projects-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 236, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.projects-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(244, 236, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(244, 236, 0, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.projects-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}
.projects-hero-desc {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.7;
}
.projects-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 750px;
  margin: 0 auto;
}
.projects-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: 0.9rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Projects Cards Section */
.projects-overview-section {
  background: #f8fafc;
  padding: 3.5rem 0 2rem 0;
}
.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #b59f00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.3rem;
  display: block;
}
.section-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
}
.section-accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}
.projects-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.project-summary-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.project-summary-card:focus-visible {
  box-shadow: 0 0 0 3px var(--primary);
}
.project-card-cover {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #1e293b;
  cursor: pointer;
}
.project-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-summary-card:hover .project-card-cover img {
  transform: scale(1.08);
}
.project-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244, 236, 0, 0.3);
}
.project-count-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.project-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.project-card-desc {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.project-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.project-card-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* Call to Action Banner on Projects Page */
.projects-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.projects-cta-box {
  max-width: 750px;
  margin: 0 auto;
}
.projects-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.projects-cta-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* ===== Interactive Project Photo Modal & Viewer ===== */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  padding: 1.2rem;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 29, 0.9);
  backdrop-filter: blur(10px);
}

.project-modal-dialog {
  position: relative;
  z-index: 1;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  max-width: 1060px;
  width: 100%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  animation: projectModalZoom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes projectModalZoom {
  from {
    transform: scale(0.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.project-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #131d35;
}

.project-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.project-modal-badge {
  background: var(--primary);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-modal-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.project-modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.project-modal-close:hover {
  background: var(--primary);
  color: #0f172a;
  transform: scale(1.08);
}

.project-modal-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.4rem 0.8rem 1.4rem;
  flex: 1;
  min-height: 340px;
  max-height: 60vh;
  background: #090e1a;
}

.modal-main-img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.modal-main-img {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.modal-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 820px;
  padding-top: 0.75rem;
  gap: 1rem;
}

.modal-caption-text {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.modal-counter-badge {
  background: rgba(244, 236, 0, 0.2);
  color: var(--primary);
  border: 1px solid rgba(244, 236, 0, 0.4);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  white-space: nowrap;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 5;
}

.modal-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0f172a;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev {
  left: 1.2rem;
}

.modal-nav-btn.next {
  right: 1.2rem;
}

/* Thumbnail Strip */
.modal-thumbs-wrap {
  display: flex;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem 1rem 1.4rem;
  overflow-x: auto;
  background: #111a2e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-behavior: smooth;
}

.modal-thumbs-wrap::-webkit-scrollbar {
  height: 6px;
}
.modal-thumbs-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.modal-thumb-btn {
  flex: 0 0 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #1e293b;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: all 0.2s ease;
}

.modal-thumb-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.modal-thumb-btn.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(244, 236, 0, 0.6);
}

.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .projects-hero-title {
    font-size: 2rem;
  }
  .projects-hero {
    padding: 3rem 0 2.5rem 0;
  }
  .projects-stats-row {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .project-modal {
    padding: 0.5rem;
  }
  .project-modal-dialog {
    max-height: 96vh;
    border-radius: 12px;
  }
  .project-modal-header {
    padding: 0.8rem 1rem;
  }
  .project-modal-title {
    font-size: 1.05rem;
  }
  .project-modal-stage {
    padding: 0.8rem 0.6rem 0.5rem 0.6rem;
    min-height: 240px;
    max-height: 50vh;
  }
  .modal-main-img {
    max-height: 40vh;
  }
  .modal-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .modal-nav-btn.prev {
    left: 0.5rem;
  }
  .modal-nav-btn.next {
    right: 0.5rem;
  }
  .modal-caption-text {
    font-size: 0.88rem;
  }
  .modal-thumbs-wrap {
    padding: 0.6rem 0.8rem;
    gap: 0.4rem;
  }
  .modal-thumb-btn {
    flex: 0 0 54px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .projects-cards-grid {
    grid-template-columns: 1fr;
  }
}


