/* Modern 3D Glassmorphism Theme - WebKapocs */

:root {
  --blue-primary: #0077ff;
  --blue-light: #4da6ff;
  --blue-bright: #00aaff;
  --blue-gradient: linear-gradient(135deg, #0077ff 0%, #00aaff 100%);
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray-medium: #64748b;
  --gray-dark: #1e293b;
  --shadow-glass: 0 8px 32px rgba(0, 119, 255, 0.15);
  --shadow-floating: 0 20px 40px rgba(0, 119, 255, 0.1);
  --backdrop-blur: blur(20px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
  color: var(--gray-dark);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

/* Background shapes removed */

/* Glass Morphism Base - styles moved to standardized section */

/* Floating Animation - Removed */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 91px;
}

.nav-glass {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  color: var(--blue-primary);
  width: 32px;
  height: 32px;
}

.logo-text h1 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.logo-text span {
  color: var(--gray-medium);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--blue-primary);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--blue-primary);
}

.menu-icon {
  width: 24px;
  height: 24px;
}

/* Promo Banner */
.glass-banner {
  margin-top: 91px;
  padding: 1rem;
  text-align: center;
  background: var(--blue-gradient);
  color: var(--white);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.glass-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

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

.promo-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content:first-child {
  text-align: left;
}

.hero-content:last-child {
  text-align: center;
}

/* Desktop side-by-side layout */
@media (min-width: 769px) {
  .hero-content {
    min-height: 475px;
  }
}

.hero-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* rotateX removed */
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: var(--shadow-glass);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.3);
  color: var(--blue-primary);
  border: 2px solid var(--blue-light);
  backdrop-filter: var(--backdrop-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

/* Sections */
section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

/* Card Grid Layouts */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Standardized Card Styles */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
}

.glass-card h4 {
  color: var(--blue-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Card Specific Overrides */
.service-card,
.process-step {
  padding: 2.5rem;
}

.service-card h4 {
  font-size: 1.5rem;
}

/* Cards with special layout needs */
.about-content,
.package-content {
  text-align: center;
  padding: 3rem;
}

.hero-content {
  padding: 3rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}


.package-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Alternating Section Backgrounds */
.services,
.about,
.why-us,
.package {
  background: rgba(0, 119, 255, 0.08);
}

.features,
.clients,
.process,
.contact {
  background: var(--white);
}

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

/* About */
.about {
  padding: 6rem 0;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-medium);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Why Us */

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

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.process-step {
  padding: 2.5rem;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glass);
}


.package-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-column {
  text-align: left;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(0, 119, 255, 0.1);
  color: var(--gray-dark);
  font-weight: 500;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.package-list li:before {
  content: "✓";
  color: var(--blue-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.package-list li:last-child {
  border-bottom: none;
}

.contact {
  padding: 6rem 0;
}


.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.contact-item span {
  display: block;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--blue-bright);
}

.service-icon,
.contact-icon {
  color: var(--blue-primary);
  font-size: 0.9em;
  margin-right: 0.4rem;
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
}

/* Footer */
.glass-footer {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--backdrop-blur);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem 0;
  text-align: center;
  color: var(--gray-medium);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 91px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .container,
  .hero-container {
    padding: 0 15px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero-content:first-child {
    text-align: center;
  }

  .hero-content:last-child {
    order: 2;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .services-grid,
  .features-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .package-features {
    grid-template-columns: 1fr;
  }

  .btn {
    transform: none;
  }

  .glass-card {
    transform: none;
  }
}
