/* Custom Fonts */
@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Edo";
  src: url("../Fonts/edo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #070508;
  background-color: #f5f5f7;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 245, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(79, 20, 175, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(245, 245, 247, 0.98);
  box-shadow: 0 2px 20px rgba(79, 20, 175, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-family: "Edo", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #4f14af;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #070508;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #4f14af;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f14af, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #4f14af;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #070508;
}

.hero-title .highlight {
  color: #4f14af;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 20, 175, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #4f14af;
  border: 2px solid #4f14af;
}

.btn-secondary:hover {
  background: #4f14af;
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4f14af;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid #333;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.icon-1 {
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 100px;
  left: -50px;
  animation-delay: 1s;
}

.icon-3 {
  top: 200px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero-waves path {
  fill: #ffffff;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #070508;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-category {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(79, 20, 175, 0.1);
  transition: all 0.3s ease;
}

.feature-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 20, 175, 0.15);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4f14af;
  margin-bottom: 30px;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #070508;
  margin-bottom: 8px;
}

.feature-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Technology Section */
.technology {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
}

.technology .section-title,
.technology .section-description {
  color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.tech-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tech-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-item p {
  color: rgba(255, 255, 255, 0.8);
}

/* Screenshots Section */
.screenshots {
  background: #f9fafb;
}

.screenshots-carousel {
  overflow: hidden;
}

.screenshot-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.screenshot-item {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 20, 175, 0.15);
}

.screenshot-item img {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.screenshot-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #070508;
  margin-bottom: 10px;
}

.screenshot-item p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Download Section */
.download {
  background: linear-gradient(135deg, #070508, #1f1f23);
  color: white;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-feature i {
  color: #4f14af;
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  gap: 20px;
}

.download-btn img {
  height: 60px;
  transition: all 0.3s ease;
}

.download-btn:hover img {
  transform: scale(1.05);
}

.download-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-group {
  position: relative;
}

.phone-1,
.phone-2 {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-1 {
  position: relative;
  z-index: 2;
}

.phone-2 {
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 1;
}

/* Footer */
.footer {
  background: #070508;
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-logo span {
  font-family: "Edo", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #4f14af;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4f14af;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(79, 20, 175, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #4f14af;
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  color: #4f14af;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 20, 175, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(245, 245, 247, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-item img {
    width: 150px;
    height: 300px;
  }

  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .download-text h2 {
    font-size: 2rem;
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .phone-2 {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-track {
    grid-template-columns: 1fr;
  }

  .screenshot-item img {
    width: 200px;
    height: 400px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3d0f87, #7c3aed);
}

/* Loading Animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Smooth Animations */
* {
  transition: all 0.3s ease;
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Live Queue Timing Section */
.live-timing {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.timing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 20, 175, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(79, 20, 175, 0);
  }
}

.timing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #070508;
  margin-bottom: 20px;
  line-height: 1.2;
}

.timing-description {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
  line-height: 1.8;
}

.timing-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timing-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timing-feature i {
  font-size: 1.5rem;
  color: #4f14af;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 20, 175, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.timing-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #070508;
  margin-bottom: 5px;
}

.timing-feature p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Queue Demo Styles */
.queue-demo {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.queue-header {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  padding: 20px;
  text-align: center;
}

.queue-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.salon-name {
  font-size: 0.9rem;
  opacity: 0.9;
}

.queue-list {
  padding: 0;
}

.queue-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.queue-item:last-child {
  border-bottom: none;
}

.queue-item.completed {
  background: rgba(40, 167, 69, 0.05);
  opacity: 0.7;
}

.queue-item.active {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
}

.queue-item.current {
  background: linear-gradient(
    135deg,
    rgba(79, 20, 175, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border-left: 4px solid #4f14af;
  box-shadow: 0 0 20px rgba(79, 20, 175, 0.1);
}

.queue-item.waiting {
  background: rgba(108, 117, 125, 0.05);
}

.queue-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #495057;
  margin-right: 15px;
  flex-shrink: 0;
}

.queue-item.completed .queue-number {
  background: #28a745;
  color: white;
}

.queue-item.active .queue-number {
  background: #ffc107;
  color: #212529;
}

.queue-item.current .queue-number {
  background: #4f14af;
  color: white;
}

.queue-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.customer-name {
  font-weight: 600;
  color: #070508;
  margin-bottom: 2px;
}

.status {
  font-size: 0.85rem;
  font-weight: 500;
}

.status.completed {
  color: #28a745;
}

.status.active {
  color: #ffc107;
}

.status.waiting {
  color: #6c757d;
}

.queue-item.current .status {
  color: #4f14af;
  font-weight: 600;
}

.queue-item i:last-child {
  font-size: 1rem;
  color: #dee2e6;
}

.queue-item.completed i:last-child {
  color: #28a745;
}

.queue-item.active i:last-child {
  color: #ffc107;
}

.queue-item.current i:last-child {
  color: #4f14af;
}

.queue-footer {
  background: #f8f9fa;
  padding: 15px 20px;
  text-align: center;
}

.estimated-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #495057;
  font-size: 0.95rem;
}

.estimated-time i {
  color: #4f14af;
}

.estimated-time strong {
  color: #4f14af;
}

/* Responsive Design for Live Timing */
@media (max-width: 768px) {
  .timing-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .timing-title {
    font-size: 2.5rem;
  }

  .timing-description {
    font-size: 1.1rem;
  }

  .timing-features {
    max-width: 400px;
    margin: 0 auto;
  }

  .queue-demo {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .timing-title {
    font-size: 2rem;
  }

  .queue-demo {
    max-width: 300px;
  }
}
