/* ======= GLOBAL ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ff3c00;
}

/* ======= HEADER ======= */
.header {
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
.logo span {
  color: #ff3c00;
}

.nav a {
  margin-left: 1.5rem;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover {
  color: #ff3c00;
}

/* ======= HERO ======= */
.hero {
  background: url('../assets/hero1.jpg') center/cover no-repeat;
  background-image: url("image/poza1.jpg");
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content span {
  color: #ff3c00;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.btn {
  background: #ff3c00;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}
.btn:hover {
  background: #ff6b3d;
}

/* ======= SERVICES ======= */
.services {
  background: #141414;
  padding: 4rem 2rem;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.card {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.card i {
  font-size: 2rem;
  color: #ff3c00;
  margin-bottom: 1rem;
}
.card:hover {
  transform: translateY(-5px);
  background: #262626;
}

/* --- PLANURI --- */
.plans {
  padding: 60px 20px;
  background: linear-gradient(180deg, #111, #222);
  text-align: center;
}

.plans h2 {
  font-size: 2.5rem;
  color: #f7f7f7;
  margin-bottom: 40px;
}

.plan-section {
  margin-bottom: 70px;
  border-top: 2px solid #333;
  padding-top: 30px;
}

.plan-title {
  font-size: 1.8rem;
  color: #ffbe0b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan-card {
  background: #1c1c1c;
  border: 2px solid #2f2f2f;
  border-radius: 15px;
  padding: 30px 25px;
  width: 260px;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(255, 190, 11, 0.3);
  border-color: #ffbe0b;
}

.plan-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.plan-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 1.2rem;
  color: #ffbe0b;
  font-weight: bold;
}

/* --- GALERIE FOTO --- */
.gallery {
  background: #181818;
  text-align: center;
  padding: 70px 20px;
}

.gallery h2 {
  font-size: 2.2rem;
  color: #ffbe0b;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .plan-list {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}

/* ======= SCHEDULE ======= */
.schedule {
  background: #141414;
  padding: 4rem 2rem;
}
table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
}
th, td {
  padding: 1rem;
  border-bottom: 1px solid #333;
}
th {
  color: #ff3c00;
}
tbody tr:hover {
  background: #1f1f1f;
}

/* ======= CONTACT ======= */
.contact {
  padding: 4rem 2rem;
  background: #0d0d0d;
  text-align: center;
}
.contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
}
.btn-social {
  background: #ff3c00;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-social:hover {
  background: #ff6b3d;
}

/* ======= FOOTER ======= */
.footer {
  background: #080808;
  padding: 1rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
 }

 /* ======= ABONAMENTE MODERNE - GRILE ======= */
.plans-modern {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 5rem 2rem;
}

.plans-modern h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.plans-modern h2 span {
  color: #ff3c00;
  background: linear-gradient(135deg, #ff3c00, #ff6b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.plans-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Categorii */
.plan-category {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(2px);
}

.category-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.standard-badge {
  background: linear-gradient(135deg, #2c3e66, #1a2a4a);
  color: #7eb6ff;
  border: 1px solid #3a5a8a;
}

.full-badge {
  background: linear-gradient(135deg, #5a2a1a, #3a1a0a);
  color: #ff8c42;
  border: 1px solid #ff6b3d;
}

.long-badge {
  background: linear-gradient(135deg, #1a4a2a, #0a2a1a);
  color: #42ff8c;
  border: 1px solid #3dff6b;
}

.flex-badge {
  background: linear-gradient(135deg, #4a1a4a, #2a0a2a);
  color: #c842ff;
  border: 1px solid #b83dff;
}

/* Grila carduri */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card-modern {
  background: #121212;
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.plan-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff3c00, #ff8c42, #ff3c00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.plan-card-modern:hover::before {
  transform: scaleX(1);
}

.plan-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 60, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.plan-card-modern h4 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.plan-card-modern p {
  color: #ffbe0b;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.plan-schedule {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.plan-schedule span {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff3c00;
  margin: 1rem 0;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: normal;
  color: #888;
}

.plan-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #ff3c00, #ff6b3d);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.plan-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
}

.plan-btn.popular {
  background: linear-gradient(135deg, #ffbe0b, #ff8c00);
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .plans-modern {
    padding: 3rem 1rem;
  }
  
  .plans-modern h2 {
    font-size: 1.8rem;
  }
  
  .category-cards {
    grid-template-columns: 1fr;
  }
  
  .plan-card-modern {
    padding: 1.2rem;
  }
  
  .plan-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .category-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }
  
  .plan-icon {
    font-size: 2rem;
  }
  
  .plan-card-modern h4 {
    font-size: 1.1rem;
  }
}

/* ======= ABONAMENTE MODERNE - GRILE ======= */
.plans-modern {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 5rem 2rem;
}

.plans-modern h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.plans-modern h2 span {
  background: linear-gradient(135deg, #ff3c00, #ff6b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.plans-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.plan-category {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(2px);
}

.category-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.standard-badge {
  background: linear-gradient(135deg, #2c3e66, #1a2a4a);
  color: #7eb6ff;
  border: 1px solid #3a5a8a;
}

.full-badge {
  background: linear-gradient(135deg, #5a2a1a, #3a1a0a);
  color: #ff8c42;
  border: 1px solid #ff6b3d;
}

.long-badge {
  background: linear-gradient(135deg, #1a4a2a, #0a2a1a);
  color: #42ff8c;
  border: 1px solid #3dff6b;
}

.flex-badge {
  background: linear-gradient(135deg, #4a1a4a, #2a0a2a);
  color: #c842ff;
  border: 1px solid #b83dff;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card-modern {
  background: #121212;
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.plan-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff3c00, #ff8c42, #ff3c00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.plan-card-modern:hover::before {
  transform: scaleX(1);
}

.plan-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 60, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.plan-card-modern h4 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.plan-card-modern p {
  color: #ffbe0b;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.plan-schedule {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.plan-schedule span {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff3c00;
  margin: 1rem 0;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: normal;
  color: #888;
}

.plan-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #ff3c00, #ff6b3d);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.plan-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
}

.plan-btn.popular {
  background: linear-gradient(135deg, #ffbe0b, #ff8c00);
}

@media (max-width: 768px) {
  .plans-modern {
    padding: 3rem 1rem;
  }
  
  .plans-modern h2 {
    font-size: 1.8rem;
  }
  
  .category-cards {
    grid-template-columns: 1fr;
  }
  
  .plan-card-modern {
    padding: 1.2rem;
  }
  
  .plan-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .category-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }
  
  .plan-icon {
    font-size: 2rem;
  }
  
  .plan-card-modern h4 {
    font-size: 1.1rem;
  }
}