/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0a0a14 0%, #1a0a28 100%);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, #7a1fa2, #b35cff, #7a1fa2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

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

/* ==================== PARTICLES BACKGROUND ==================== */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at top left, #140c1c, #040308 80%);
}

/* ==================== MUSIC TOGGLE BUTTON ==================== */
.music-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(122, 31, 162, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(179, 92, 255, 0.8);
}

.music-btn.playing i::before {
  content: "\f028";
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 6px 30px rgba(122, 31, 162, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo img {
  height: 50px;
  filter: drop-shadow(0 0 12px rgba(122, 31, 162, 0.8));
  transition: transform 0.3s ease;
}

.navbar .logo:hover img {
  transform: scale(1.1);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ddd;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7a1fa2, #b35cff);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
  width: 150px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(122, 31, 162, 0.8));
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(122, 31, 162, 0.8)); }
  50% { filter: drop-shadow(0 0 40px rgba(179, 92, 255, 1)); }
}

.hero h1 {
  font-family: "Verdana", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 2rem;
  color: #b35cff;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, #7a1fa2, #b35cff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 31, 162, 0.6);
}

.btn-outline {
  border: 2px solid #7a1fa2;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #7a1fa2;
  box-shadow: 0 6px 20px rgba(122, 31, 162, 0.5);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-link {
  color: #b35cff;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(122, 31, 162, 0.15), transparent 70%);
}

.page-header h1 {
  font-family: "Verdana", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 100px 0;
  position: relative;
}

section h2 {
  font-family: "Verdana", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

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

/* ==================== INTRO SECTION ==================== */
.intro {
  background: rgba(255, 255, 255, 0.02);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.intro-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(122, 31, 162, 0.3);
}

/* ==================== FEATURES ==================== */
.features {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0f28 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(122, 31, 162, 0.4);
  border-color: rgba(122, 31, 162, 0.5);
}

.feature-icon i {
  font-size: 3rem;
  color: #b35cff;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.15);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #bbb;
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
  background: rgba(0, 0, 0, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(122, 31, 162, 0.4);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-body {
  padding: 30px;
  text-align: center;
}

.service-body i {
  font-size: 2.5rem;
  color: #b35cff;
  margin-bottom: 15px;
}

.service-body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-body p {
  color: #bbb;
  margin-bottom: 20px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ==================== ABOUT CONTENT ==================== */
.about-content {
  background: rgba(255, 255, 255, 0.02);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(122, 31, 162, 0.3);
}

/* ==================== VALUES ==================== */
.values {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0f28 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(122, 31, 162, 0.4);
}

.value-icon i {
  font-size: 3rem;
  color: #b35cff;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ==================== TEAM ==================== */
.team-section {
  background: rgba(0, 0, 0, 0.2);
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.team-intro p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  max-width: 400px;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(122, 31, 162, 0.4);
}

.team-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-role {
  color: #b35cff;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ==================== WHY US ==================== */
.why-us {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0f28 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 31, 162, 0.5);
}

.why-item i {
  font-size: 1.5rem;
  color: #b35cff;
}

.why-item p {
  font-size: 1.05rem;
  color: #ddd;
}
/* ==================== SERVICE DETAIL ==================== */
.service-detail {
  padding: 80px 0;
}

.service-detail.alt {
  background: rgba(255, 255, 255, 0.02);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(122, 31, 162, 0.3);
}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-detail-content h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-lead {
  font-size: 1.2rem;
  color: #b35cff;
  margin-bottom: 30px;
  font-weight: 600;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #fff;
}

.service-detail-content p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 20px;
}

.benefits-list li {
  padding: 10px 0;
  font-size: 1.05rem;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list i {
  color: #b35cff;
  font-size: 1.2rem;
}

.highlight-box {
  background: rgba(122, 31, 162, 0.2);
  border-left: 4px solid #b35cff;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.service-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ==================== PRICING ==================== */
.pricing-intro {
  text-align: center;
  padding: 40px 0;
}

.info-box {
  background: rgba(122, 31, 162, 0.2);
  border: 1px solid rgba(122, 31, 162, 0.4);
  padding: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.info-box i {
  font-size: 1.5rem;
  color: #b35cff;
}

.pricing-section {
  padding: 60px 0;
}

.pricing-section.alt-bg {
  background: rgba(255, 255, 255, 0.02);
}

.pricing-category-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.pricing-category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a1fa2, #b35cff);
  border-radius: 2px;
}

.pricing-category-title i {
  color: #b35cff;
  font-size: 1.8rem;
}

.pricing-category-desc {
  text-align: center;
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 50px;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 30px 0 15px;
  padding: 10px 15px;
  background: rgba(122, 31, 162, 0.15);
  border-left: 3px solid #b35cff;
  border-radius: 0 8px 8px 0;
}

.pricing-desc {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.price-time {
  font-size: 0.85rem;
  color: #999;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-time i {
  color: #b35cff;
  font-size: 0.8rem;
}

.pricing-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-item:hover {
  border-color: rgba(122, 31, 162, 0.3);
  box-shadow: 0 8px 30px rgba(122, 31, 162, 0.15);
}

.pricing-item.premium {
  border-color: rgba(122, 31, 162, 0.4);
  background: linear-gradient(135deg, rgba(122, 31, 162, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.pricing-item.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7a1fa2, #b35cff);
}

.pricing-item.active {
  border-color: rgba(122, 31, 162, 0.5);
}

.pricing-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-header:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-header:hover .pricing-icon {
  transform: scale(1.05);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(122, 31, 162, 0.3);
}

.pricing-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.pricing-title {
  flex: 1;
}

.pricing-header h2 {
  font-size: 1.8rem;
  margin: 0;
  text-align: left;
}

.pricing-duration {
  color: #b35cff;
  font-weight: 600;
  margin: 5px 0 0 0;
  font-size: 0.95rem;
}

.toggle-icon {
  font-size: 1.3rem;
  color: #b35cff;
  transition: transform 0.4s ease;
  margin-left: auto;
  opacity: 0.7;
}

.pricing-header:hover .toggle-icon {
  opacity: 1;
}

.pricing-item.active .toggle-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.pricing-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 30px;
}

.pricing-item.active .pricing-body {
  max-height: 2000px;
  padding: 25px 30px 30px;
}

.gift-info {
  background: linear-gradient(135deg, rgba(122, 31, 162, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4ade80;
  font-weight: 500;
}

.gift-info i {
  font-size: 1.2rem;
  color: #4ade80;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.price-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 5px 20px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 31, 162, 0.5);
  transform: translateX(5px);
}

.price-option.recommended {
  border: 2px solid #b35cff;
  background: rgba(122, 31, 162, 0.1);
  padding-top: 25px;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #7a1fa2, #b35cff);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(122, 31, 162, 0.4);
}

.price-label {
  font-size: 1.05rem;
  color: #e0e0e0;
  font-weight: 500;
  grid-column: 1;
  grid-row: 1;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #b35cff;
  text-align: right;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  white-space: nowrap;
}

.price-save {
  font-size: 0.85rem;
  color: #4ade80;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-save::before {
  content: "✓";
  font-size: 0.8rem;
}

.price-time {
  font-size: 0.85rem;
  color: #999;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-time i {
  color: #b35cff;
  font-size: 0.8rem;
}

/* ==================== PRICING INFO SECTION ==================== */
.pricing-info-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 31, 162, 0.5);
}

.info-card i {
  font-size: 2.5rem;
  color: #b35cff;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.info-card p {
  color: #bbb;
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details h2 {
  text-align: left;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 31, 162, 0.5);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: #ddd;
  margin: 0;
}

.contact-text a {
  color: #b35cff;
}

.contact-text a:hover {
  color: #fff;
}

.contact-text small {
  font-size: 0.9rem;
  color: #999;
}

.contact-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-logo-large {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 20px rgba(122, 31, 162, 0.6));
}

.contact-social h3 {
  text-align: center;
  margin-bottom: 20px;
}

.social-icons-large {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(122, 31, 162, 0.2);
  border-color: #b35cff;
  transform: translateX(5px);
}

.social-icon i {
  font-size: 1.5rem;
  color: #b35cff;
}

.social-icon span {
  font-size: 1.1rem;
  color: #ddd;
}

/* ==================== MAP ==================== */
.map-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.map-section h2 {
  margin-bottom: 15px;
}

.map-intro {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

.map-container {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.map-info-item {
  display: flex;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info-item i {
  font-size: 2rem;
  color: #b35cff;
  margin-top: 5px;
}

.map-info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.map-info-item p {
  color: #ccc;
  margin: 0;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 31, 162, 0.5);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item i {
  color: #b35cff;
}

.faq-item p {
  color: #ccc;
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #05050a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(122, 31, 162, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(122, 31, 162, 0.5));
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  color: #999;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a {
  color: #b35cff;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #999;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #b35cff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #7a1fa2, #b35cff);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-size: 0.9rem;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== HAMBURGER MENU - MOBILE ==================== */
@media (max-width: 768px) {
  .navbar .container {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a::before {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Overlay dla zamknięcia menu */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
  }
}

/* ==================== RESPONSYWNOŚĆ ==================== */
@media (max-width: 992px) {
  .intro-grid,
  .about-intro,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-content h2,
  .about-text h2,
  .contact-details h2 {
    text-align: center;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .pricing-header {
    flex-wrap: wrap;
  }

  .pricing-header h2 {
    font-size: 1.4rem;
  }

  .music-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 100px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ==================== CENNIK RESPONSYWNOŚĆ ==================== */
@media (max-width: 992px) {
  .pricing-category-title {
    font-size: 1.7rem;
  }
  
  .pricing-category-title i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-category-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .pricing-category-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .pricing-header {
    padding: 20px;
    gap: 15px;
  }
  
  .pricing-icon {
    width: 50px;
    height: 50px;
  }
  
  .pricing-icon i {
    font-size: 1.2rem;
  }
  
  .pricing-header h2 {
    font-size: 1.2rem;
  }
  
  .pricing-duration {
    font-size: 0.85rem;
  }
  
  .toggle-icon {
    font-size: 1.2rem;
  }
  
  .pricing-item.active .pricing-body {
    padding: 20px;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .price-option {
    padding: 15px 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    text-align: left;
  }
  
  .price-option.recommended {
    padding-top: 28px;
  }
  
  .price-label {
    font-size: 1rem;
    grid-column: 1;
    grid-row: 1;
  }
  
  .price-value {
    font-size: 1.4rem;
    text-align: left;
    grid-column: 1;
    grid-row: 2;
  }
  
  .price-save {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.8rem;
  }
  
  .price-time {
    grid-column: 1;
    grid-row: 3;
  }
  
  .badge {
    top: -10px;
    right: 15px;
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  .gift-info {
    font-size: 0.9rem;
    padding: 12px;
  }
  
  .info-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 0;
  }
  
  .pricing-category-title {
    font-size: 1.3rem;
  }
  
  .pricing-header {
    padding: 15px;
  }
  
  .pricing-icon {
    width: 45px;
    height: 45px;
  }
  
  .pricing-header h2 {
    font-size: 1.1rem;
  }
  
  .price-option {
    padding: 12px 15px;
  }
  
  .price-label {
    font-size: 0.95rem;
  }
  
  .price-value {
    font-size: 1.3rem;
  }
}  