/* styles.css */

/* Root Variables */
:root {
  --primary-color: #d946ef;
  --secondary-color: #ec4899;
  --accent-color: #f97316;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #d946ef 0%, #ec4899 50%, #f97316 100%);
  --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
  --shadow-soft: 0 10px 30px rgba(217, 70, 239, 0.1);
  --shadow-medium: 0 20px 40px rgba(217, 70, 239, 0.15);
  --shadow-strong: 0 30px 60px rgba(217, 70, 239, 0.2);
  --border-radius: 20px;
}

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: var(--shadow-medium);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner a {
  color: white;
  text-decoration: underline;
}

/* Navigation */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 70, 239, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.custom-navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.brand-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color) !important;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.8) 0%, rgba(236, 72, 153, 0.6) 50%, rgba(249, 115, 22, 0.8) 100%);
  z-index: 1;
}

section .container{
  position: relative;
  z-index: 5;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.floating-item {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-item-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-item-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-item-3 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-item-4 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-bottom: 3rem;
}

.btn {
  border-radius: var(--border-radius);
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Service Spotlight Section */
.service-spotlight {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.service-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d946ef" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ec4899" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f97316" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.service-card {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scale(1);
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.service-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  z-index: 2;
}

.service-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.service-price {
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--primary-color);
  vertical-align: top;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 5px;
}

.price-period {
  font-size: 1.1rem;
  color: var(--dark-color);
  opacity: 0.7;
}

.service-features {
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Products Showcase */
.products-showcase {
  padding: 0;
  overflow: hidden;
}

.product-diagonal-left,
.product-diagonal-right {
  min-height: 600px;
  position: relative;
}

.product-diagonal-left::before,
.product-diagonal-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: 1;
}

.product-content {
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: white;
}

.product-category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.product-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.product-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.product-benefits li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.product-benefits i {
  color: var(--primary-color);
  margin-right: 15px;
  width: 20px;
}

.product-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  position: relative;
  background: var(--dark-color);
  color: white;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23d946ef" fill-opacity="0.1" points="0,0 1000,300 1000,1000 0,700"/><polygon fill="%23ec4899" fill-opacity="0.1" points="0,300 1000,0 1000,400 0,1000"/></svg>');
  z-index: 1;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.carousel-inner {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #fbbf24;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author h5 {
  margin-bottom: 5px;
  color: white;
}

.testimonial-author span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.2rem;
  color: white;
}

/* Newsletter Section */
.newsletter-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  color: white;
}

.newsletter-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .input-group {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.newsletter-form .form-control {
  border: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  border-radius: 0;
}

.newsletter-form .btn {
  border-radius: 0;
  padding: 20px 30px;
  background: var(--gradient-primary);
  border: none;
}

.newsletter-form .form-text {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-brand h5 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 40px 0 20px;
}

.footer-copyright {
  opacity: 0.8;
  margin: 0;
}

/* Contact Form Styles */
.contact-form .form-control {
  border: 2px solid rgba(217, 70, 239, 0.2);
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 70, 239, 0.25);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-card {
    padding: 40px 20px;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
  
  .product-content {
    padding: 40px 30px;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 25px;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  .hero-section{
    padding-top: 100px;
    padding-bottom: 60px;
  }
}