/* --- VELOURA INSPIRED DESIGN SYSTEM --- */
:root {
  --bg-dark: #050507;
  --bg-card: rgba(20, 20, 25, 0.7);
  --text-white: #FFFFFF;
  --text-muted: #8E8E93;
  --orange: #FF8C00;
  --orange-glow: rgba(255, 140, 0, 0.3);
  --orange-dark: #E67E22;
  
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body.veloura-theme {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
}

.text-orange { color: var(--orange); }
.text-center { text-align: center; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--orange); }

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: translateX(-101%);
  transition: var(--transition-smooth);
}

.logo:hover::after {
  transform: translateX(0);
}

.btn-contact {
  background: var(--text-white);
  color: var(--bg-dark);
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--orange);
  color: var(--text-white);
}

/* Cinematic Noise & Glow Overlay */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.glow-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  display: none; /* Hidden on mobile */
}

.cursor-follower {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transition: transform 0.15s ease-out;
  transform: translate(-50%, -50%);
  display: none; /* Hidden on mobile */
}

@media (pointer: fine) {
  .cursor, .cursor-follower { display: block; }
}

body.hovering .cursor {
  transform: translate(-50%, -50%) scale(3);
  background: rgba(255, 140, 0, 0.1);
  border-color: transparent;
}

/* Hero Section Enhanced */
.hero {
  padding: 14rem 0 8rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 40%);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.hero-content { flex: 1.2; }
.hero-image { flex: 0.8; }

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.main-hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Floating Badges */
.badge-float {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.badge-1 { bottom: 8rem; right: 2rem; }

.badge-avatars { display: flex; }
.badge-avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -15px;
}
.badge-avatars img:first-child { margin-left: 0; }

.badge-text strong { display: block; font-size: 0.9rem; }
.badge-text span { font-size: 0.75rem; color: var(--text-muted); }

/* Stats Section */
.stats-section { padding: 6rem 0; }
.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.stats-header h2 { font-size: 2.5rem; line-height: 1.2; }

.btn-outline {
  border: 1px solid var(--text-muted);
  color: var(--text-white);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-shadow: 0 0 20px var(--orange-glow);
}

.stat-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Services Section */
.services-section { padding: 6rem 0; background: #0C0C0F; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.05), transparent);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--orange-glow);
}

.service-img { height: 280px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.1); }

.service-info { padding: 2rem; position: relative; }
.service-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-info p { color: var(--text-muted); font-size: 0.9rem; }

.btn-icon {
  position: absolute;
  right: 2rem; bottom: 2rem;
  width: 45px; height: 45px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  transition: var(--transition);
}

.service-card:hover .btn-icon {
  background: var(--orange);
  color: var(--text-white);
}

/* Benefits Section */
.benefits-section { padding: 6rem 0; }
.benefits-box {
  background: rgba(17, 17, 20, 0.4);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  border: 1px solid rgba(255,140,0,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.benefit-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  box-shadow: 0 10px 20px var(--orange-glow);
  transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
  transform: rotateY(360deg) scale(1.1);
}

.benefit-item h3 { margin-bottom: 1rem; }
.benefit-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Gallery Strip */
.gallery-strip {
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

.strip-container {
  display: flex;
  gap: 1.5rem;
  transform: rotate(-3deg) scale(1.1);
  margin-bottom: 6rem;
}

.strip-image {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.strip-image img { width: 100%; height: 100%; object-fit: cover; }

.strip-content h2 { font-size: 3rem; margin-bottom: 2rem; }

/* Pricing Section */
.pricing-section { padding: 6rem 0; background: #0C0C0F; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.price-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.price-list li span:last-child { color: var(--orange); font-weight: 600; }

.price-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-footer .total { font-size: 1.8rem; font-weight: 700; color: var(--text-white); }
.price-footer .total small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }

.btn-small {
  background: var(--text-white);
  color: var(--bg-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Blog Section */
.blog-section { padding: 6rem 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-img { height: 350px; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-img .category {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--orange);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-info { padding: 2rem; }
.blog-info .date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.blog-info h3 { font-size: 1.6rem; margin-bottom: 1.5rem; line-height: 1.3; }

.btn-read {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-read:hover { color: var(--orange); }

/* Testimonials */
.testimonials-section { padding: 6rem 0; background: #0C0C0F; }
.nav-arrows { display: flex; gap: 1rem; }
.nav-arrows button {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
}

.nav-arrows button:hover { border-color: var(--orange); color: var(--orange); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testi-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-md);
}

.testi-card .stars { margin-bottom: 1.5rem; color: var(--orange); display: flex; align-items: center; gap: 0.2rem; }
.testi-card .rating { color: var(--text-white); margin-left: 0.5rem; font-weight: 600; }

.testi-card p { font-size: 1.2rem; margin-bottom: 2rem; font-style: italic; color: var(--text-white); }

.testi-user { display: flex; align-items: center; gap: 1rem; }
.testi-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.user-info h4 { font-size: 1rem; }
.user-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Footer */
.footer {
  padding: 6rem 0 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p { color: var(--text-muted); margin-bottom: 2rem; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  transition: var(--transition-smooth);
}
.social-links a:hover { background: var(--orange); }
.social-links ion-icon { font-size: 1.2rem; }

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }

.footer-contact p { color: var(--text-muted); margin-bottom: 1rem; display: flex; gap: 0.8rem; }
.footer-contact i { color: var(--orange); }

.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  color: var(--text-white);
}

.newsletter-form button {
  background: var(--orange);
  color: var(--text-white);
  border: none;
  padding: 0 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .hero { padding: 10rem 0 4rem; }
  .hero .container { flex-direction: column; text-align: center; gap: 3rem; }
  .hero-content { flex: 1; }
  .hero p { margin: 0 auto 2rem; }
  .main-hero-img { height: 450px; }
  
  .stats-grid, .services-grid, .pricing-grid, .blog-grid, .testimonials-grid, .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .benefits-box {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
  
  .badge-1 { position: relative; bottom: auto; right: auto; margin-top: 2rem; justify-content: center; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 0; background: rgba(8, 8, 10, 0.95); backdrop-filter: blur(10px); }
  .nav-links.left { display: none; }
  .nav-actions.right { flex: 1; justify-content: flex-end; }
  .logo { flex: 1; text-align: center; letter-spacing: 2px; }
  
  .hero { padding: 8rem 0 3rem; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero p { font-size: 1rem; }
  
  .stats-header { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
  .stats-header h2 { font-size: 2rem; }
  
  .stats-grid, .services-grid, .pricing-grid, .blog-grid, .testimonials-grid, .footer-top {
    grid-template-columns: 1fr;
  }
  
  .benefits-box { grid-template-columns: 1fr; padding: 2rem; gap: 3rem; }
  
  .strip-container { transform: rotate(0) scale(1); flex-wrap: wrap; justify-content: center; }
  .strip-image { flex: 0 0 45%; height: 250px; }
  .strip-content h2 { font-size: 2rem; }
  
  .price-card, .testi-card, .blog-info { padding: 1.5rem; }
  .testi-card p { font-size: 1.1rem; }
  
  .footer-top { gap: 2.5rem; text-align: center; }
  .footer-contact p { justify-content: center; }
  .social-links { justify-content: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .strip-image { flex: 0 0 100%; height: 300px; }
  .stat-item h3 { font-size: 2.5rem; }
  .pricing-grid { gap: 1rem; }
  .price-header h3 { font-size: 1.2rem; }
  .price-footer .total { font-size: 1.5rem; }
}