@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(0,0,0,0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #00ffcc;
}


.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #e0e0e0;
}

.cta-container {
  margin-top: 10px;
}

.cta-button {
  background: #00ffcc;
  color: #000;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.3s;
}

.cta-button:hover {
  background: #ffffff;
  transform: scale(1.05);
}



section {
  padding: 80px 50px;
  text-align: center;
}

.services .service-cards,
.plans .plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card, .plan {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover, .plan:hover {
  background: rgba(255, 255, 255, 0.1);
}

.card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00ffcc;
}

.plan .price {
  display: block;
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: bold;
}

.plan.highlight {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
}

.about p {
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto 20px;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact button {
  padding: 15px;
  background: #00ffcc;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #fff;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-button:hover {
  background: #1ebe5d;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.8);
  font-size: 0.9rem;
  margin-top: 40px;
}
