@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --primary-gradient: linear-gradient(135deg, #3200fe 0%, #0082fb 100%);
  --secondary-gradient: linear-gradient(135deg, #47a0fd 0%, #1da2ff 100%);
  --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(50, 0, 254, 0.1);
  --shadow-strong: 0 20px 60px rgba(50, 0, 254, 0.2);
  --text-primary: #04001e;
  --text-secondary: #64748b;
  --text-light: #f3f5fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e8ecff 100%);
  overflow-x: hidden;
  position: relative;
}

/* Animated background particles */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(50, 0, 254, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 130, 251, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(29, 162, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

button,
input,
textarea {
  font-family: "Inter", sans-serif;
}

.center {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* HEADER STYLES */
header {
  width: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(50, 0, 254, 0.1);
  transform: translateY(0);
}

header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 80px;
  position: relative;
  transition: all 0.3s ease;
}
header .logo {
  flex-shrink: 0;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

header .logo:hover {
  transform: scale(1.05);
}

header .logo img {
  display: block;
  max-height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(50, 0, 254, 0.2));
}
header .mobile-menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  user-select: none;
  cursor: pointer;
  display: none;
  padding: 9px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  header .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .mobile-menu-toggle .close {
  display: none;
}
header .mobile-menu-toggle .open {
  display: block;
}
header .mobile-menu-toggle.open img.close {
  display: block;
}
header .mobile-menu-toggle.open img.open {
  display: none;
}
header #mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1001;
  border-radius: 40px;
  background-color: #3200fe;
  box-sizing: border-box;
  padding: 48px;
}
header #mobile-menu h3 {
  color: #0082fb;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
}
header #mobile-menu ul {
  padding: 0;
  list-style: none;
}
header #mobile-menu ul li {
  margin: 40px 0;
}
header #mobile-menu ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #f3f5fb;
}
header #mobile-menu ul li a.active {
  color: #0082fb;
}
header #mobile-menu.open {
  display: block;
}
header #web-menu {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  header #web-menu {
    display: none;
  }
}
header #web-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
header #web-menu li {
  display: block;
}
header #web-menu li a {
  padding: 12px 20px;
  font-size: 16px;
  color: #04001e;
  font-weight: 600;
  display: block;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

header #web-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 0, 254, 0.1) 0%,
    rgba(0, 130, 251, 0.1) 100%
  );
  transition: left 0.3s ease;
}

header #web-menu li a:hover::before {
  left: 0;
}

header #web-menu li a:hover {
  color: #3200fe;
  background: rgba(50, 0, 254, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(50, 0, 254, 0.2);
}

header #web-menu li a.active {
  color: #3200fe;
  position: relative;
}

header #web-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
}

/* HERO SECTION */
#hero-splash {
  float: left;
  width: 100%;
  margin: 120px 0 80px 0;
  position: relative;
}

#hero-splash .container {
  float: left;
  width: 100%;
  background: var(--primary-gradient);
  border-radius: 36px;
  padding: 140px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 900px) {
  #hero-splash .container {
    padding: 80px 48px;
  }
}
#hero-splash .container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(29, 162, 255, 0.2) 0%,
      transparent 50%
    );
  animation: heroFloat 8s ease-in-out infinite;
}

#hero-splash .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 20s linear infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-15px) rotate(120deg) scale(1.05);
  }
  66% {
    transform: translateY(10px) rotate(240deg) scale(0.95);
  }
}

@keyframes patternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(60px) translateY(60px);
  }
}
#hero-splash .content {
  position: relative;
  z-index: 2;
}
#hero-splash h1 {
  font-size: 56px;
  font-weight: 900;
  color: white;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#hero-splash h1 span {
  background: linear-gradient(135deg, #1da2ff 0%, #47a0fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

#hero-splash h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #1da2ff 0%, #47a0fd 100%);
  border-radius: 2px;
  animation: underlineGrow 1.5s ease-out 0.5s forwards;
  transform: scaleX(0);
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}
@media (max-width: 900px) {
  #hero-splash h1 {
    font-size: 32px;
  }
}
#hero-splash p {
  font-size: 20px;
  color: rgba(243, 245, 251, 0.9);
  margin: 30px auto 50px auto;
  max-width: 800px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  #hero-splash p {
    font-size: 16px;
  }
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* BUTTON STYLES */
.button {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 25px rgba(50, 0, 254, 0.3));
}

.button:hover {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 15px 35px rgba(50, 0, 254, 0.4));
}

.button:active {
  transform: translateY(-2px) scale(0.98);
}
.button .text {
  display: block;
  position: relative;
  color: white;
  height: 76px;
  width: 276px;
  font-size: 18px;
  line-height: 76px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.button.secondary .text {
  color: #3200fe;
  text-shadow: none;
}

.button .btn-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.button .btn-background path {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover .btn-background path {
  fill: #47a0fd;
}

.button.secondary:hover .btn-background path {
  fill: #3200fe;
}

.button.secondary:hover .text {
  color: white;
}

/* SERVICES SECTION */
#services {
  float: left;
  width: 100%;
  margin: 80px 0;
  position: relative;
}

#services .container {
  float: left;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  padding: 90px;
  box-sizing: border-box;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

#services .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(50, 0, 254, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 130, 251, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

#services .container > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  #services .container {
    padding: 48px;
  }
}
#services .content-top {
  text-align: center;
  margin-bottom: 80px;
}
#services .content-top h2 {
  font-size: 96px;
  font-weight: 900;
  text-transform: uppercase;
  color: #e8ecff;
  margin: 0;
  user-select: none;
}
@media (max-width: 900px) {
  #services .content-top h2 {
    font-size: 48px;
  }
}
#services .content-top h3 {
  color: #3200fe;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: -64px 0 20px 0;
}
@media (max-width: 900px) {
  #services .content-top h3 {
    font-size: 28px;
    margin: -32px 0 20px 0;
  }
}
#services .content-top p {
  color: #64748b;
  font-weight: 500;
  font-size: 16px;
  margin: 20px auto;
  max-width: 600px;
  line-height: 1.7;
}

/* PACKAGES GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding-top: 20px;
}
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(232, 236, 255, 0.5);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(50, 0, 254, 0.1);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(50, 0, 254, 0.15);
  border-color: #3200fe;
}
.package-card.featured {
  border-color: #3200fe;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(50, 0, 254, 0.15);
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.package-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 0, 254, 0.05) 0%,
    rgba(0, 130, 251, 0.05) 100%
  );
  border-radius: 22px;
  pointer-events: none;
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px rgba(50, 0, 254, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(50, 0, 254, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #04001e;
  margin: 0 0 20px 0;
}
.package-card.featured .package-header h3 {
  color: #3200fe;
}

.package-card.micro {
  border-color: #47a0fd;
}

.package-card.micro .package-header h3 {
  color: #47a0fd;
}

.price {
  margin-bottom: 30px;
}
.price .amount {
  font-size: 36px;
  font-weight: 800;
  color: #3200fe;
}
.price .period {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}
.features li {
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 30px;
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3200fe;
  font-weight: bold;
  font-size: 18px;
  top: 12px;
}
.features li:last-child {
  border-bottom: none;
}

.package-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3200fe 0%, #4318ff 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(50, 0, 254, 0.2);
  position: relative;
  overflow: hidden;
}
.package-btn:hover {
  background: linear-gradient(135deg, #47a0fd 0%, #5b2cff 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(50, 0, 254, 0.3);
}

/* HOSTING INFO STYLES */
.hosting-info {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #3200fe;
}

.hosting-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #04001e;
  line-height: 1.4;
}

.hosting-info p strong {
  color: #3200fe;
  font-weight: 600;
}

.hosting-info .note {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #e8ecff;
}

/* DOMAIN & HOSTING SECTION */
.domain-hosting-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid #e8ecff;
}

.domain-hosting-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.domain-hosting-section .section-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: #3200fe;
  margin: 0 0 15px 0;
}

.domain-hosting-section .section-header p {
  font-size: 18px;
  color: #04001e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-item {
  background: white;
  border: 2px solid #e8ecff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #3200fe;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(50, 0, 254, 0.1);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.service-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #04001e;
  margin: 0 0 20px 0;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-item ul li {
  padding: 8px 0;
  color: #04001e;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.service-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3200fe;
  font-weight: bold;
}

.pricing-note {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 30px;
  margin-top: 40px;
  border-left: 4px solid #3200fe;
}

.pricing-note .note-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #3200fe;
  margin: 0 0 15px 0;
}

.pricing-note .note-content p {
  font-size: 16px;
  color: #04001e;
  line-height: 1.6;
  margin: 10px 0;
}

.pricing-note .note-content p strong {
  color: #3200fe;
  font-weight: 600;
}

@media (max-width: 900px) {
  .domain-hosting-section .section-header h3 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 25px;
  }

  .pricing-note {
    padding: 25px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .plan-item {
    padding: 20px 15px;
  }
}

/* HOSTING PLANS */
.hosting-plans {
  margin: 50px 0 40px 0;
  text-align: center;
}

.hosting-plans h4 {
  font-size: 24px;
  font-weight: 700;
  color: #04001e;
  margin: 0 0 30px 0;
}

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

.plan-item {
  background: white;
  border: 2px solid #e8ecff;
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.plan-item:hover {
  border-color: #3200fe;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(50, 0, 254, 0.1);
}

.plan-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #04001e;
  margin: 0 0 15px 0;
}

.plan-price {
  font-size: 24px;
  font-weight: 800;
  color: #3200fe;
  margin: 0 0 20px 0;
}

.plan-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-item ul li {
  padding: 6px 0;
  color: #04001e;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.plan-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3200fe;
  font-weight: bold;
  font-size: 12px;
}

/* FAQ SECTION */
#faq {
  float: left;
  width: 100%;
  margin: 80px 0;
}

#faq .container {
  float: left;
  width: 100%;
  background-color: white;
  border-radius: 36px;
  padding: 90px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  #faq .container {
    padding: 48px;
  }
}

#faq .content-top {
  text-align: center;
  margin-bottom: 60px;
}

#faq .content-top h2 {
  font-size: 42px;
  font-weight: 800;
  color: #3200fe;
  margin: 0 0 15px 0;
}

@media (max-width: 900px) {
  #faq .content-top h2 {
    font-size: 32px;
  }
}

#faq .content-top p {
  font-size: 18px;
  color: #04001e;
  margin: 0;
}

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

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.faq-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3200fe;
  margin: 0 0 8px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #3200fe;
  position: relative;
  padding-left: 16px;
}

/* Clean FAQ Category Design - No Icons */

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Details/Summary FAQ Styling */
.faq-item {
  border: 2px solid #e8ecff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3200fe;
  box-shadow: 0 5px 15px rgba(50, 0, 254, 0.1);
}

.faq-item[open] {
  border-color: #3200fe;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9ff;
  transition: background-color 0.3s ease;
  list-style: none;
  position: relative;
}

.faq-question:hover {
  background: #e8ecff;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #04001e;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 15px;
}

/* Custom arrow for summary */
.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: bold;
  color: #3200fe;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

/* Hide default summary marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 20px;
  background: white;
  border-top: 1px solid #e8ecff;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 15px;
  color: #04001e;
  line-height: 1.6;
  margin: 0;
}

.faq-answer p strong {
  color: #3200fe;
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #3200fe;
}

.faq-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #3200fe;
  margin: 0 0 15px 0;
}

.faq-cta p {
  font-size: 16px;
  color: #04001e;
  margin: 0 0 30px 0;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-btn.phone {
  background: #3200fe;
  color: white;
}

.contact-btn.phone:hover {
  background: #47a0fd;
  transform: translateY(-2px);
}

.contact-btn.email {
  background: white;
  color: #3200fe;
  border-color: #3200fe;
}

.contact-btn.email:hover {
  background: #3200fe;
  color: white;
  transform: translateY(-2px);
}

/* Professional Contact Icons */
.contact-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.contact-icon.phone-icon {
  background: rgba(255, 255, 255, 0.2);
}

.contact-icon.phone-icon::before {
  content: "☎";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.contact-btn.phone:hover .contact-icon.phone-icon {
  background: rgba(255, 255, 255, 0.3);
}

.contact-icon.email-icon {
  background: rgba(50, 0, 254, 0.1);
}

.contact-icon.email-icon::before {
  content: "@";
  color: #3200fe;
  font-weight: bold;
  font-size: 14px;
}

.contact-btn.email:hover .contact-icon.email-icon {
  background: rgba(255, 255, 255, 0.2);
}

.contact-btn.email:hover .contact-icon.email-icon::before {
  color: white;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 15px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer {
    padding: 15px;
  }

  .faq-cta {
    padding: 30px 20px;
  }

  .faq-cta h3 {
    font-size: 24px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* PORTFOLIO SECTION */
#reviews {
  float: left;
  width: 100%;
  margin: 80px 0;
  position: relative;
}

#reviews .container {
  float: left;
  width: 100%;
  background: var(--primary-gradient);
  border-radius: 36px;
  padding: 90px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

#reviews .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(29, 162, 255, 0.2) 0%,
      transparent 50%
    );
  animation: portfolioFloat 12s ease-in-out infinite;
}

@keyframes portfolioFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  33% {
    transform: translateX(10px) translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateX(-5px) translateY(5px) rotate(-1deg);
  }
}
@media (max-width: 900px) {
  #reviews .container {
    padding: 48px;
  }
}
#reviews .content-top {
  text-align: center;
  margin-bottom: 60px;
}
#reviews .content-top h2 {
  color: white;
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 20px 0;
}
@media (max-width: 900px) {
  #reviews .content-top h2 {
    font-size: 36px;
  }
}
#reviews .content-top p {
  color: #f3f5fb;
  font-size: 18px;
  margin: 0 auto;
  max-width: 600px;
}

.portfolio-gallery {
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.project-item {
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.project-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.project-item:hover::before {
  opacity: 1;
}

.project-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.project-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
}

.project-item:hover .project-image img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.2);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-item:hover .project-overlay {
  transform: translateY(0);
}

.project-info h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.project-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Focus states for accessibility */
.project-item:focus {
  outline: 3px solid #47a0fd;
  outline-offset: 2px;
}

.project-item:focus .project-overlay {
  transform: translateY(0);
}

/* Alternative hover effect for touch devices */
@media (hover: none) {
  .project-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  }

  .project-item:hover .project-image img {
    transform: none;
  }
}

.url-display {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: #666;
  min-width: 200px;
  text-align: center;
}

.website-preview {
  height: calc(100% - 50px);
  position: relative;
  overflow: hidden;
}

/* Bella Vita Preview */
.website-preview.bella-vita {
  background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pizza" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pizza)"/></svg>');
}

.bella-vita .site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.3);
}

.bella-vita .nav-brand {
  display: flex;
  align-items: center;
  color: white;
}

.bella-vita .nav-brand img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
}

.bella-vita .nav-brand span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.bella-vita .nav-links {
  display: flex;
  gap: 30px;
  color: white;
  font-size: 14px;
}

.bella-vita .hero-area {
  text-align: center;
  padding: 80px 40px;
  color: white;
}

.bella-vita .hero-area h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bella-vita .hero-area p {
  font-size: 20px;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

.bella-vita .cta-button {
  background: #d4af37;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Dušić Preview */
.website-preview.dusic {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.dusic .site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.2);
}

.dusic .nav-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.dusic .nav-links {
  display: flex;
  gap: 25px;
  color: white;
  font-size: 14px;
}

.dusic .nav-contact {
  color: #3498db;
  font-weight: 600;
}

.dusic .hero-area {
  text-align: center;
  padding: 60px 40px;
  color: white;
}

.dusic .hero-area h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.dusic .hero-area p {
  font-size: 16px;
  margin: 0 0 30px 0;
  opacity: 0.9;
  line-height: 1.5;
}

.dusic .cta-button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* NS-Plus Preview */
.website-preview.nsplus {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.nsplus .site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.1);
}

.nsplus .nav-brand {
  display: flex;
  align-items: center;
  color: white;
}

.nsplus .nav-brand img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
  filter: brightness(0) invert(1);
}

.nsplus .nav-brand span {
  font-size: 16px;
  font-weight: 700;
}

.nsplus .nav-links {
  display: flex;
  gap: 25px;
  color: white;
  font-size: 14px;
}

.nsplus .hero-area {
  padding: 50px 40px;
  color: white;
}

.nsplus .hero-area h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.nsplus .hero-area p {
  font-size: 16px;
  margin: 0 0 30px 0;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
}

.nsplus .button-group {
  display: flex;
  gap: 15px;
}

.nsplus .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nsplus .btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .showcase-carousel {
    height: 400px;
  }

  .website-preview .site-navigation {
    padding: 15px 20px;
  }

  .website-preview .nav-links {
    display: none;
  }

  .website-preview .hero-area {
    padding: 40px 20px;
  }

  .website-preview .hero-area h1 {
    font-size: 28px;
  }

  .website-preview .hero-area p {
    font-size: 14px;
  }
}

.portfolio-description {
  text-align: center;
  margin-top: 30px;
}
.portfolio-description p {
  color: #f3f5fb;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER STYLES */
footer {
  float: left;
  width: 100%;
  margin-top: 80px;
}
footer .container {
  overflow: hidden;
  padding: 90px;
  border-radius: 36px;
  background-color: #3200fe;
}
@media (max-width: 1000px) {
  footer .container {
    padding: 48px;
  }
}
footer .container .content-top {
  float: left;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;
  margin-bottom: 60px;
}
footer .container .content-top .content-image {
  float: left;
  width: 50%;
  height: 400px;
  background: linear-gradient(135deg, #e8ecff 0%, #f3f5fb 100%);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233200FE' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 1000px) {
  footer .container .content-top .content-image {
    width: 100%;
    height: 200px;
  }
}
footer .container .content-top .content-text {
  float: left;
  width: 50%;
  padding: 60px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  footer .container .content-top .content-text {
    width: 100%;
    padding: 40px;
    text-align: center;
  }
}
footer .container .content-top .content-text h3 {
  color: #04001e;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 20px 0;
}
@media (max-width: 1000px) {
  footer .container .content-top .content-text h3 {
    font-size: 28px;
  }
}
footer .container .content-top .content-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0 30px 0;
}

footer .container .content-bottom {
  float: left;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 60px;
}
@media (max-width: 900px) {
  footer .container .content-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

footer .container .content-bottom nav h3,
footer .container .content-bottom .item h3 {
  color: #1da2ff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

footer .container .content-bottom nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .container .content-bottom nav ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
footer .container .content-bottom nav ul li img {
  margin-right: 10px;
  width: 12px;
}
footer .container .content-bottom nav ul li a {
  color: #f3f5fb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
footer .container .content-bottom nav ul li a:hover {
  color: #1da2ff;
}

footer .container .content-bottom .item p {
  color: #f3f5fb;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
}
footer .container .content-bottom .item p a {
  color: #1da2ff;
  text-decoration: none;
}
footer .container .content-bottom .item p a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #1da2ff;
  transform: translateY(-2px);
}
.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  float: left;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom ul li a {
  color: #04001e;
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom ul li a:hover {
  color: #1da2ff;
}
.footer-bottom p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .center {
    padding: 0 20px;
  }

  #hero-splash h1 {
    font-size: 32px;
  }

  .packages-grid {
    gap: 20px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .portfolio-carousel {
    gap: 20px;
  }

  .portfolio-slide {
    flex: 0 0 250px;
  }

  .website-mockup {
    height: 350px;
  }

  .mockup-content {
    padding: 20px 15px;
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

.package-card:nth-child(2) {
  animation-delay: 0.1s;
}

.package-card:nth-child(3) {
  animation-delay: 0.2s;
}

.portfolio-slide:nth-child(2) {
  animation-delay: 0.1s;
}

.portfolio-slide:nth-child(3) {
  animation-delay: 0.2s;
}

.portfolio-slide:nth-child(4) {
  animation-delay: 0.3s;
}
/* SUBTLE IMPROVEMENTS */

.package-card:nth-child(2) {
  animation-delay: 0.1s;
}

.package-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Improve text selection */
::selection {
  background-color: rgba(50, 0, 254, 0.2);
  color: #04001e;
}

/* Add subtle focus states for accessibility */
.package-btn:focus,
.button:focus {
  outline: 2px solid #3200fe;
  outline-offset: 2px;
}

/* Improve link hover states */
header #web-menu li a {
  position: relative;
}

header #web-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #3200fe;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header #web-menu li a:hover::after,
header #web-menu li a.active::after {
  width: 100%;
}

/* Add subtle gradient to featured badge */
.featured-badge {
  background: linear-gradient(135deg, #3200fe 0%, #4318ff 100%);
  box-shadow: 0 4px 12px rgba(50, 0, 254, 0.3);
}

/* Improve pricing display */
.price .amount {
  background: linear-gradient(135deg, #3200fe 0%, #4318ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Add subtle hover effect to features */
.features li:hover {
  color: #1e293b;
  padding-left: 35px;
}

/* Improve micro package styling */
.package-card.micro .price .amount {
  background: linear-gradient(135deg, #47a0fd 0%, #0082fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* MODERN ENHANCEMENTS */

/* Glassmorphism utility classes */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Magnetic hover effect for interactive elements */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic:hover {
  transform: translate3d(0, -2px, 0);
}

/* Enhanced focus states for accessibility */
*:focus {
  outline: 3px solid rgba(50, 0, 254, 0.5);
  outline-offset: 2px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3200fe 0%, #0082fb 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #47a0fd 0%, #1da2ff 100%);
}

/* Text selection styling */
::selection {
  background: rgba(50, 0, 254, 0.2);
  color: #04001e;
}

/* Loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Pulse animation for call-to-action elements */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Floating animation for decorative elements */
.float {
  animation: float 6s ease-in-out infinite;
}

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

/* Gradient text effect */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Neon glow effect */
.neon-glow {
  box-shadow: 0 0 5px rgba(50, 0, 254, 0.5), 0 0 10px rgba(50, 0, 254, 0.4),
    0 0 15px rgba(50, 0, 254, 0.3), 0 0 20px rgba(50, 0, 254, 0.2);
}

/* Morphing background */
.morphing-bg {
  background: linear-gradient(-45deg, #3200fe, #0082fb, #47a0fd, #1da2ff);
  background-size: 400% 400%;
  animation: morphing 15s ease infinite;
}

@keyframes morphing {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .center {
    padding: 0 15px;
  }

  #hero-splash .container {
    padding: 80px 30px;
  }

  #hero-splash h1 {
    font-size: 36px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Performance optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  will-change: transform;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* LOADING SCREEN */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.loading-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #1da2ff);
  border-radius: 2px;
  animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* MICRO-INTERACTIONS */

/* Package card tilt effect */
.package-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Floating elements */
.float-element {
  animation: gentleFloat 4s ease-in-out infinite;
}

.float-element:nth-child(2n) {
  animation-delay: -2s;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Glowing text effect */
.glow-text {
  text-shadow: 0 0 10px rgba(50, 0, 254, 0.5), 0 0 20px rgba(50, 0, 254, 0.3),
    0 0 30px rgba(50, 0, 254, 0.2);
}

/* Interactive button states */
.interactive-btn {
  position: relative;
  overflow: hidden;
}

.interactive-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.interactive-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Smooth page transitions */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: pageEnter 0.8s ease forwards;
}

@keyframes pageEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced mobile touch feedback */
@media (hover: none) and (pointer: coarse) {
  .package-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .button:active {
    transform: scale(0.95);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .package-card:hover {
    animation: none;
    transform: translateY(-5px);
  }

  .float-element {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .package-card {
    border-width: 3px;
  }

  .button {
    border: 2px solid currentColor;
  }
}
