* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #07111f 0%, #0b1728 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  padding: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(17, 169, 255, 0.25);
}

.brand-text h1 {
  font-size: 24px;
  color: #11a9ff;
  letter-spacing: 1px;
}

.brand-text p {
  color: #84dc63;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: #d9e7f2;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #84dc63;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #11a9ff, #84dc63);
  color: #07111f;
  box-shadow: 0 12px 28px rgba(17,169,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17,169,255,0.12);
  color: #bde7ff;
  border: 1px solid rgba(17,169,255,0.25);
  font-size: 14px;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.gradient {
  background: linear-gradient(90deg, #11a9ff, #84dc63);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #c9d6e2;
  font-size: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat h3 {
  font-size: 30px;
  margin-bottom: 6px;
}

.stat p {
  color: #9eb2c5;
  font-size: 14px;
}

.hero-card,
.page-banner,
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.hero-card img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  object-fit: contain;
}

.section {
  padding: 58px 0;
}

.page-section {
  padding: 50px 0;
}

.section-title small {
  color: #84dc63;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 38px;
  margin-top: 10px;
}

.section-title p,
.page-banner p {
  color: #bdd0df;
  margin-top: 10px;
  max-width: 760px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(17,169,255,0.28);
  transition: 0.25s ease;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(17,169,255,0.2), rgba(132,220,99,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card p {
  color: #acc1d3;
}

.list {
  padding-left: 18px;
  margin-top: 14px;
  color: #e0eaf3;
}

.list li {
  margin: 7px 0;
}

.project-top {
  height: 7px;
  background: linear-gradient(90deg, #11a9ff, #84dc63);
  border-radius: 20px 20px 0 0;
  margin: -24px -24px 18px;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card {
  position: relative;
  min-height: 330px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: end;
  border: 0 solid rgba(255,255,255,0.08);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.18), rgba(0,0,0,0.08));
}

.project-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
}

.insta-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.insta-badge svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.project-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(17, 169, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

.project-content h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
}

.project-content p {
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1.6;
}

.price {
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0 4px;
}

.badge {
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #11a9ff, #84dc63);
  color: #06101d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(17,169,255,0.3), rgba(132,220,99,0.3));
  font-size: 28px;
  font-weight: 800;
}

.role {
  color: #91d4ff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  background: #0c1828;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  outline: none;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(17,169,255,0.4);
}

.full {
  grid-column: 1 / -1;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.info p {
  margin: 12px 0;
  color: #d4dfeb;
}

.footer {
  margin-top: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,10,20,0.35);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.socials a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.09);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #84dc63;
  color: #07111f;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(132,220,99,0.28);
}

.page-banner h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.team-section {
  padding: 60px 20px;
  text-align: center;
}

.team-title {
  font-size: 36px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #11a9ff, #84dc63);
  color: transparent;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #11a9ff;
  box-shadow: 0 20px 40px rgba(17,169,255,0.3);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card p {
  color: #84dc63;
  font-size: 14px;
}

.plan-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #11a9ff, #84dc63);
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 8px 18px rgba(17, 169, 255, 0.25);
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(132, 220, 99, 0.3);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.service-card {
  min-height: 400px;
  width: 100% !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .contact-grid,
  .stats,
  .form-grid,
  .package-grid,
  .team-container {
    grid-template-columns: 1fr;
  }

  .hero h2,
  .page-banner h2 {
    font-size: 42px;
  }

  .menu-btn {
    display: block;
    order: 3;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
    order: 4;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .nav-wrap > .btn.btn-primary {
    width: 100%;
    text-align: center;
    order: 5;
  }

  .project-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, 94%);
  }

  .hero {
    padding: 44px 0 30px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p,
  .section-title p,
  .page-banner p {
    font-size: 15px;
  }

  .page-banner h2,
  .section-title h2 {
    font-size: 30px;
  }

  .card,
  .hero-card,
  .page-banner {
    padding: 18px;
    border-radius: 22px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text h1 {
    font-size: 19px;
  }

  .brand-text p {
    letter-spacing: 2px;
    font-size: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price {
    font-size: 30px;
  }

  .project-card {
    min-height: 240px;
  }

  .project-content h3 {
    font-size: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .socials {
    width: 100%;
  }

  .socials a {
    text-align: center;
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    gap: 14px;
  }

  .stats {
    gap: 12px;
  }

  .stat {
    padding: 16px;
  }

  .form-grid {
    gap: 12px;
  }

  .socials a {
    flex: 1 1 100%;
  }
}



/* Team page mobile image fix */
.team img,
.team-member img,
.member-card img,
.team-card img,
.member-image img,
.team-img img,
.team-photo img,
.team .card img,
.team-members img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  background: transparent;
}

@media (max-width: 768px) {
  .team img,
  .team-member img,
  .member-card img,
  .team-card img,
  .member-image img,
  .team-img img,
  .team-photo img,
  .team .card img,
  .team-members img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .team-member,
  .member-card,
  .team-card,
  .team .card {
    overflow: visible !important;
  }
}
