/* ==================== 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: "Orbitron", 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: "Orbitron", 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: "Orbitron", 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.4rem;
  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;
  }
}/ *   = = = = = = = = = = = = = = = = = = = =   A C C E S S I B I L I T Y   &   P E R F O R M A N C E   I M P R O V E M E N T S   = = = = = = = = = = = = = = = = = = = =   * /  
  
 / *   F o c u s   i n d i c a t o r s   f o r   k e y b o a r d   n a v i g a t i o n   * /  
 * : f o c u s   {  
     o u t l i n e :   2 p x   s o l i d   # b 3 5 c f f ;  
     o u t l i n e - o f f s e t :   2 p x ;  
 }  
  
 * : f o c u s : n o t ( : f o c u s - v i s i b l e )   {  
     o u t l i n e :   n o n e ;  
 }  
  
 a : f o c u s - v i s i b l e ,  
 b u t t o n : f o c u s - v i s i b l e ,  
 i n p u t : f o c u s - v i s i b l e ,  
 t e x t a r e a : f o c u s - v i s i b l e   {  
     o u t l i n e :   2 p x   s o l i d   # b 3 5 c f f ;  
     o u t l i n e - o f f s e t :   2 p x ;  
     b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 1 7 9 ,   9 2 ,   2 5 5 ,   0 . 2 ) ;  
 }  
  
 / *   R e d u c e d   m o t i o n   f o r   u s e r s   w i t h   m o t i o n   s e n s i t i v i t y   * /  
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   {  
     * ,  
     * : : b e f o r e ,  
     * : : a f t e r   {  
         a n i m a t i o n - d u r a t i o n :   0 . 0 1 m s   ! i m p o r t a n t ;  
         a n i m a t i o n - i t e r a t i o n - c o u n t :   1   ! i m p o r t a n t ;  
         t r a n s i t i o n - d u r a t i o n :   0 . 0 1 m s   ! i m p o r t a n t ;  
         s c r o l l - b e h a v i o r :   a u t o   ! i m p o r t a n t ;  
     }  
 }  
  
 / *   P e r f o r m a n c e   o p t i m i z a t i o n s   * /  
 . h e r o - v i d e o ,  
 . f e a t u r e - c a r d ,  
 . s e r v i c e - c a r d   {  
     w i l l - c h a n g e :   t r a n s f o r m ;  
 }  
  
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   n o - p r e f e r e n c e )   {  
     . f e a t u r e - c a r d ,  
     . s e r v i c e - c a r d ,  
     . v a l u e - c a r d   {  
         t r a n s f o r m :   t r a n s l a t e Z ( 0 ) ;  
         b a c k f a c e - v i s i b i l i t y :   h i d d e n ;  
     }  
 }  
  
 / *   M o b i l e   m e n u   o v e r l a y   * /  
 b o d y . m e n u - o p e n   {  
     o v e r f l o w :   h i d d e n ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
     . n a v - m e n u   {  
         p o s i t i o n :   f i x e d ;  
         t o p :   0 ;  
         r i g h t :   - 1 0 0 % ;  
         h e i g h t :   1 0 0 v h ;  
         w i d t h :   8 0 % ;  
         m a x - w i d t h :   3 0 0 p x ;  
         b a c k g r o u n d :   r g b a ( 1 0 ,   1 0 ,   2 0 ,   0 . 9 8 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         p a d d i n g :   1 0 0 p x   3 0 p x   3 0 p x ;  
         g a p :   2 5 p x ;  
         t r a n s i t i o n :   r i g h t   0 . 4 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ;  
         b o x - s h a d o w :   - 5 p x   0   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         z - i n d e x :   9 9 9 ;  
     }  
      
     . n a v - m e n u . a c t i v e   {  
         r i g h t :   0 ;  
     }  
      
     . n a v - m e n u   l i   {  
         w i d t h :   1 0 0 % ;  
     }  
      
     . n a v - m e n u   a   {  
         d i s p l a y :   b l o c k ;  
         p a d d i n g :   1 2 p x   0 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
     }  
      
     . h a m b u r g e r   {  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
     }  
      
     . h a m b u r g e r . a c t i v e   s p a n : n t h - c h i l d ( 1 )   {  
         t r a n s f o r m :   r o t a t e ( 4 5 d e g )   t r a n s l a t e ( 8 p x ,   8 p x ) ;  
     }  
      
     . h a m b u r g e r . a c t i v e   s p a n : n t h - c h i l d ( 2 )   {  
         o p a c i t y :   0 ;  
     }  
      
     . h a m b u r g e r . a c t i v e   s p a n : n t h - c h i l d ( 3 )   {  
         t r a n s f o r m :   r o t a t e ( - 4 5 d e g )   t r a n s l a t e ( 7 p x ,   - 7 p x ) ;  
     }  
      
     / *   M o b i l e   m e n u   b a c k d r o p   * /  
     b o d y . m e n u - o p e n : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   f i x e d ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ;  
         z - i n d e x :   9 9 8 ;  
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ;  
     }  
      
     @ k e y f r a m e s   f a d e I n   {  
         f r o m   {   o p a c i t y :   0 ;   }  
         t o   {   o p a c i t y :   1 ;   }  
     }  
 }  
  
 / *   P a g e   l o a d   a n i m a t i o n   * /  
 b o d y   {  
     o p a c i t y :   0 ;  
     t r a n s i t i o n :   o p a c i t y   0 . 5 s   e a s e ;  
 }  
  
 b o d y . l o a d e d   {  
     o p a c i t y :   1 ;  
 }  
  
 / *   F a d e - i n   e l e m e n t s   * /  
 . f a d e - i n   {  
     o p a c i t y :   0 ;  
     t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;  
     t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e ,   t r a n s f o r m   0 . 6 s   e a s e ;  
 }  
  
 . f a d e - i n . v i s i b l e   {  
     o p a c i t y :   1 ;  
     t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
 }  
  
 / *   S k i p   t o   c o n t e n t   l i n k   f o r   s c r e e n   r e a d e r s   * /  
 . s k i p - t o - c o n t e n t   {  
     p o s i t i o n :   a b s o l u t e ;  
     t o p :   - 4 0 p x ;  
     l e f t :   0 ;  
     b a c k g r o u n d :   # 7 a 1 f a 2 ;  
     c o l o r :   # f f f ;  
     p a d d i n g :   8 p x   1 6 p x ;  
     t e x t - d e c o r a t i o n :   n o n e ;  
     z - i n d e x :   1 0 0 0 0 ;  
     t r a n s i t i o n :   t o p   0 . 3 s ;  
 }  
  
 . s k i p - t o - c o n t e n t : f o c u s   {  
     t o p :   0 ;  
 }  
  
 / *   I m p r o v e d   b u t t o n   a c c e s s i b i l i t y   * /  
 b u t t o n : d i s a b l e d   {  
     o p a c i t y :   0 . 6 ;  
     c u r s o r :   n o t - a l l o w e d ;  
 }  
  
 / *   H i g h   c o n t r a s t   m o d e   s u p p o r t   * /  
 @ m e d i a   ( p r e f e r s - c o n t r a s t :   h i g h )   {  
     . g r a d i e n t - t e x t   {  
         - w e b k i t - t e x t - f i l l - c o l o r :   # f f f ;  
         b a c k g r o u n d :   n o n e ;  
     }  
      
     . f e a t u r e - c a r d ,  
     . s e r v i c e - c a r d   {  
         b o r d e r - w i d t h :   2 p x ;  
     }  
 }  
  
 / *   P r i n t   s t y l e s   * /  
 @ m e d i a   p r i n t   {  
     . n a v b a r ,  
     . m u s i c - b t n ,  
     # p a r t i c l e s - j s ,  
     . s c r o l l - i n d i c a t o r   {  
         d i s p l a y :   n o n e   ! i m p o r t a n t ;  
     }  
      
     b o d y   {  
           b a c k g r o u n d :   # f f f   ! i m p o r t a n t ;  
         c o l o r :   # 0 0 0   ! i m p o r t a n t ;  
     }  
 }  
 / *   = = = = = = = = = = = = = = = = = = = = S E R V I C E S   P A G E   E N H A N C E M E N T S   = = = = = = = = = = = = = = = = = = = =   * /  
  
 / *   S e r v i c e s   N a v i g a t i o n   * /  
 . s e r v i c e s - n a v   {  
         p a d d i n g :   4 0 p x   0 ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ;  
         p o s i t i o n :   s t i c k y ;  
         t o p :   8 0 p x ;  
         z - i n d e x :   1 0 0 ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
 }  
  
 . s e r v i c e s - n a v - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ;  
         g a p :   1 5 p x ;  
         m a x - w i d t h :   9 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . s e r v i c e - n a v - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   1 0 p x ;  
         p a d d i n g :   1 5 p x   2 0 p x ;  
         b a c k g r o u n d :   r g b a ( 1 2 2 ,   3 1 ,   1 6 2 ,   0 . 1 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 2 2 ,   3 1 ,   1 6 2 ,   0 . 3 ) ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         c o l o r :   # f f f ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
 }  
  
 . s e r v i c e - n a v - i t e m : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 1 2 2 ,   3 1 ,   1 6 2 ,   0 . 3 ) ;  
         b o r d e r - c o l o r :   # b 3 5 c f f ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
         b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 1 2 2 ,   3 1 ,   1 6 2 ,   0 . 4 ) ;  
 }  
  
 . s e r v i c e - n a v - i t e m   i   {  
         f o n t - s i z e :   1 . 3 r e m ;  
         c o l o r :   # b 3 5 c f f ;  
 }  
  
 / *   S e r v i c e s   C a t e g o r y   H e a d e r s   * /  
 . s e r v i c e s - c a t e g o r y   {  
         p a d d i n g :   6 0 p x   0   4 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . s e r v i c e s - c a t e g o r y . a l t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ;  
 }  
  
 . c a t e g o r y - t i t l e   {  
         f o n t - f a m i l y :   " O r b i t r o n " ,   s a n s - s e r i f ;  
         f o n t - s i z e :   2 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         c o l o r :   # f f f ;  
 }  
  
 . c a t e g o r y - t i t l e   i   {  
         c o l o r :   # b 3 5 c f f ;  
         m a r g i n - r i g h t :   1 5 p x ;  
 }  
  
 . c a t e g o r y - d e s c   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         c o l o r :   # a a a ;  
         m a x - w i d t h :   7 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 / *   S e r v i c e   D e t a i l   G r i d   I m p r o v e m e n t s   * /  
 . s e r v i c e - d e t a i l   {  
         p a d d i n g :   6 0 p x   0 ;  
 }  
  
 . s e r v i c e - d e t a i l : f i r s t - o f - t y p e   {  
         p a d d i n g - t o p :   4 0 p x ;  
 }  
  
 / *   E n h a n c e d   H i g h l i g h t   B o x   * /  
 . h i g h l i g h t - b o x   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 1 2 2 ,   3 1 ,   1 6 2 ,   0 . 2 ) ,   r g b a ( 1 7 9 ,   9 2 ,   2 5 5 ,   0 . 2 ) ) ;  
         b o r d e r - l e f t :   4 p x   s o l i d   # b 3 5 c f f ;  
         b o r d e r - r a d i u s :   8 p x ;  
         p a d d i n g :   1 5 p x   2 0 p x ;  
         m a r g i n :   2 0 p x   0 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 0 p x ;  
 }  
  
 . h i g h l i g h t - b o x   i   {  
         c o l o r :   # b 3 5 c f f ;  
         f o n t - s i z e :   1 . 5 r e m ;  
 }  
  
 / *   R e s p o n s i v e   S e r v i c e s   N a v   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . s e r v i c e s - n a v   {  
                 p o s i t i o n :   r e l a t i v e ;  
                 t o p :   0 ;  
         }  
  
         . s e r v i c e s - n a v - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
                 g a p :   1 0 p x ;  
         }  
  
         . s e r v i c e - n a v - i t e m   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 p a d d i n g :   1 2 p x ;  
                 f o n t - s i z e :   0 . 9 r e m ;  
         }  
  
         . s e r v i c e - n a v - i t e m   i   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
  
         . c a t e g o r y - t i t l e   {  
                 f o n t - s i z e :   1 . 8 r e m ;  
         }  
  
         . c a t e g o r y - d e s c   {  
                 f o n t - s i z e :   1 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
         . s e r v i c e s - n a v - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . s e r v i c e - n a v - i t e m   {  
                 f l e x - d i r e c t i o n :   r o w ;  
                 j u s t i f y - c o n t e n t :   f l e x - s t a r t ;  
         }  
 }  
  
 / *   S c r o l l   p a d d i n g   f o r   s t i c k y   n a v   * /  
 h t m l   {  
         s c r o l l - p a d d i n g - t o p :   1 5 0 p x ;  
 }  
  
 / *   S m o o t h   s c r o l l   b e h a v i o r   f o r   s e r v i c e   a n c h o r s   * /  
 s e c t i o n [ i d ]   {  
         s c r o l l - m a r g i n - t o p :   1 5 0 p x ;  
 }  
 