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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

/* Navigation */
.top-nav {
  background: #1a1a2e;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Raleway', sans-serif;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links-wrap a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links-wrap a:hover {
  color: #16f1b2;
}

.contact-link {
  background: linear-gradient(135deg, #16f1b2, #0ce0a0);
  color: #1a1a2e !important;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
}

/* Hero */
.hero-full {
  position: relative;
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(22, 241, 178, 0.15));
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.hero-inner h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.hero-inner p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #16f1b2, #0ce0a0);
  color: #1a1a2e;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(22, 241, 178, 0.4);
  transition: all 0.3s;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(22, 241, 178, 0.6);
}

/* Stats Bar */
.stats-bar {
  background: #1a1a2e;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  color: white;
}

.stat-item h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #16f1b2;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Content Block */
.content-block {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.block-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-img-holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.info-card:hover .card-img-holder img {
  transform: scale(1.1);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.card-body p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.pricing {
  display: inline-block;
  background: linear-gradient(135deg, #16f1b2, #0ce0a0);
  color: #1a1a2e;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
}

/* Image Text Split */
.image-text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  gap: 4rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.split-text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.split-text p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

.check-list {
  list-style: none;
  margin-top: 2rem;
}

.check-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* Dark CTA */
.dark-cta-block {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 241, 178, 0.2)), url('images/cta-bg.jpg') center/cover fixed;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.dark-cta-inner h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dark-cta-inner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.white-btn {
  display: inline-block;
  background: white;
  color: #1a1a2e;
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.white-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Contact Block */
.contact-block {
  padding: 4rem 2rem;
  background: #f5f5f5;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-col h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.contact-col p {
  margin-bottom: 0.8rem;
  color: #555;
  font-size: 1.05rem;
}

.urgent {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 5px;
  color: #856404;
  font-weight: 600;
}

/* Footer */
.page-footer {
  background: #1a1a2e;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2.5rem;
  }

  .image-text-split,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}
