/* Home Page Specific Styles */
:root {
  --primary-color: #b68cff;
  --secondary-color: #ff8dc7;
  --text-color: #333;
  --text-dark: #2c2c2c;
  --light-text: #666;
  --gradient-purple-pink: linear-gradient(135deg, #b68cff, #ff8dc7);
  --gradient-purple-pink-hover: linear-gradient(135deg, #a67aff, #ff7bc0);
  --gradient-card: linear-gradient(135deg, #fff5f9, #f8f0ff);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-caption p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-button-container {
  position: relative;
  z-index: 5;
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple-pink);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(182, 140, 255, 0.5);
}

.hero-button i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.hero-button:hover {
  background: var(--gradient-purple-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 140, 255, 0.7);
}

/* Featured Services Section */
.featured-services {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #fff5f9, #f8f0ff);
  position: relative;
  overflow: hidden;
}

.featured-services::before,
.featured-services::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
}

.featured-services::before {
  background: radial-gradient(circle, #b68cff 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.featured-services::after {
  background: radial-gradient(circle, #ff8dc7 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
}

.featured-services h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
}

.featured-services h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-purple-pink);
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(182, 140, 255, 0.15);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(182, 140, 255, 0.25);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem 1.5rem 1rem;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
}

.service-card h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-purple-pink);
  border-radius: 2px;
}

.service-card p {
  margin: 0 1.5rem 2rem;
  color: var(--light-text);
  line-height: 1.6;
  font-size: 1rem;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 4rem;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-purple-pink);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(182, 140, 255, 0.3);
}

.view-all-button span {
  margin-right: 10px;
  font-size: 1.1rem;
}

.view-all-button i {
  transition: transform 0.3s ease;
}

.view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 140, 255, 0.4);
}

.view-all-button:hover i {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-purple-pink);
  padding: 6rem 2rem;
  text-align: center;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-caption h1 {
    font-size: 2.8rem;
  }

  .hero-caption p {
    font-size: 1.2rem;
  }

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

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
  }

  .hero-caption h1 {
    font-size: 2.2rem;
  }

  .hero-caption p {
    font-size: 1.1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-services {
    padding: 6rem 1rem 4rem;
  }

  .cta-section {
    padding: 4rem 1rem;
  }

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

@media (max-width: 576px) {
  .hero-caption h1 {
    font-size: 1.8rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .service-card {
    margin: 0 1rem;
  }

  .view-all-button {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}

/* New Navigation Styles for Home Page */
.header-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navigation-container-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-left-v2,
.menu-right-v2 {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link-v2,
.instagram-link-v2,
.contact-btn-v2 {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link-v2:hover,
.instagram-link-v2:hover {
  color: var(--primary-color);
}

.contact-btn-v2 {
  background: var(--gradient-purple-pink);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-btn-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(182, 140, 255, 0.3);
}

.brand-logo-v2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-img-v2 {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img-v2:hover {
  transform: scale(1.05);
}

.mobile-toggle-v2 {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

.mobile-navigation-v2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 99999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-close-v2 {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
}

.mobile-menu-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu-v2 li {
  margin: 1.5rem 0;
}

.mobile-link-v2,
.mobile-contact-v2 {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-link-v2:hover {
  color: var(--primary-color);
}

.mobile-contact-v2 {
  background: var(--gradient-purple-pink);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 25px;
  display: inline-block;
}

.mobile-navigation-v2.active {
  display: flex;
}

@media (max-width: 768px) {
  .menu-left-v2,
  .menu-right-v2 {
    display: none;
  }

  .mobile-toggle-v2 {
    display: block;
  }

  .brand-logo-v2 {
    position: static;
    transform: none;
  }
}
