/* HERO SECTION */
.tampa-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  background: url('./hero-tampa.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 20%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.2)
  );
}

/* Content */
.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #00c2ff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-primary {
  background: #00c2ff;
  color: #000;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background: #00a6d6;
}

.btn-secondary {
  border: 2px solid #fff;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* Features */
.hero-features {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #ccc;
}

/* MOBILE FIRST */
@media (max-width: 768px) {
  .tampa-hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }
}

.no-hassle-section {
  position: relative;
  padding: 30px 20px;
  background: url('./hassel-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: #0b2a3c;
}

/* light overlay like original */
.no-hassle-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
}

/* container */
.no-hassle-section .container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.no-hassle-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

/* feature */
.feature {
  padding: 20px;
}

.feature .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 22px;
  color: #2b7bbf;
  margin-bottom: 10px;
}

.feature p {
  margin: 5px 0;
  font-size: 16px;
}

/* divider */
.divider {
  width: 1px;
  height: 150px;
  background: #ccc;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }

  .feature {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
  }

  .no-hassle-section h2 {
    font-size: 32px;
  }
}

.port-info-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.port-info-section .container {
  max-width: 1200px;
  margin: auto;
}

.port-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.port-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* CONTENT */
.port-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.port-content h2 span {
  color: #4b3fd4; /* purple like your design */
}

.port-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* CTA */
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #4b3fd4;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #372bb5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .port-grid {
    grid-template-columns: 1fr;
  }

  .port-content h2 {
    font-size: 28px;
  }

  .port-image {
    order: -1;
  }
}