/* ================================
   PROFESSIONAL COMPONENTS CSS
================================ */

/* Page Particles */
.page-particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.page-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite ease-in-out;
}

.page-particles .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.page-particles .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.page-particles .particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.page-particles .particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 13s; }
.page-particles .particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 15s; }
.page-particles .particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 17s; }
.page-particles .particle:nth-child(7) { left: 90%; animation-delay: 2s; animation-duration: 14s; }
.page-particles .particle:nth-child(8) { left: 95%; animation-delay: 4s; animation-duration: 12s; }

@keyframes floatParticle {
  0%, 100% { 
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) scale(1);
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 8px;
  height: 8px;
  background: #D4AF37;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
}

.cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

@media (max-width: 1024px) {
  .cursor, .cursor-follower {
    display: none;
  }
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Animated Gradient Background */
.gradient-bg {
  background: linear-gradient(-45deg, #1a1a1a, #2d2d2d, #3d3d3d, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Marquee / Ticker */
.marquee-section {
  padding: 3rem 0;
  background: #1a1a1a;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.marquee-container {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-right: 5rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #D4AF37;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-separator {
  width: 8px;
  height: 8px;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fff 0%, #F5F1E8 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 1.2rem;
  color: #666;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid rgba(212, 175, 55, 0.1);
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 4rem;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 2;
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.testimonial-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.testimonial-info p {
  font-size: 0.95rem;
  color: #666;
}

.testimonial-stars {
  color: #D4AF37;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  letter-spacing: 3px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5E5E5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: #D4AF37;
  width: 30px;
  border-radius: 6px;
}

/* Cookie/KVKK Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 1.5rem 2rem;
  z-index: 9995;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
}

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

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

.cookie-text {
  flex: 1;
  color: #E5E5E5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: #D4AF37;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  color: #1a1a1a;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn.settings {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #D4AF37;
}

.cookie-btn.settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Typing Animation */
.typing-text {
  display: inline-block;
  border-right: 3px solid #D4AF37;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #D4AF37; }
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

/* Split Text Animation */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: charReveal 0.5s ease forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Line Animation */
.reveal-line {
  position: relative;
  overflow: hidden;
}

.reveal-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D4AF37;
  transform: translateX(-101%);
  animation: revealLine 1s ease forwards;
}

@keyframes revealLine {
  0% { transform: translateX(-101%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(101%); }
}

/* Floating Elements */
.float-element {
  animation: float 6s ease-in-out infinite;
}

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

/* Glow Effect */
.glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3),
              0 0 40px rgba(212, 175, 55, 0.2),
              0 0 60px rgba(212, 175, 55, 0.1);
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ================================
   LIVE CHAT SUPPORT
================================ */
.live-chat-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4A90D9 0%, #357ABD 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 5px 25px rgba(74, 144, 217, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
}

.live-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(74, 144, 217, 0.5);
}

.live-chat-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.live-chat-btn.active svg {
  transform: rotate(90deg);
}

.live-chat-btn .chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #E74C3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 6rem;
  left: 2rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 998;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: linear-gradient(135deg, #4A90D9 0%, #357ABD 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-header-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-avatar svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.chat-header-info h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.chat-header-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-header-info .online-dot {
  width: 8px;
  height: 8px;
  background: #2ECC71;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-close svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.chat-body {
  padding: 1.5rem;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 85%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-message.received {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.sent {
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  color: #1a1a1a;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message-time {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.3rem;
}

.chat-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-wrapper {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-input:focus {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

.chat-send-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.chat-send-btn svg {
  width: 20px;
  height: 20px;
  fill: #1a1a1a;
}

/* Quick Actions */
.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quick-action-btn {
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  color: #D4AF37;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  background: #D4AF37;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 480px) {
  .live-chat-btn {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    left: 1rem;
  }

  .chat-window {
    left: 1rem;
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }

  .chat-body {
    height: 250px;
  }
}

/* Shine Sweep Effect */
.shine-sweep {
  position: relative;
  overflow: hidden;
}

.shine-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: shineSweep 3s ease-in-out infinite;
}

@keyframes shineSweep {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #D4AF37;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li a {
    font-size: 1.3rem;
    padding: 0.5rem 2rem;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  margin-bottom: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(320px, 85vw);
  object-fit: contain;
  margin: 0 auto;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: #D4AF37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #fff;
  color: #1a1a1a;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: #1a1a1a;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }
.scroll-animate.delay-7 { transition-delay: 0.7s; }
.scroll-animate.delay-8 { transition-delay: 0.8s; }
.scroll-animate.delay-9 { transition-delay: 0.9s; }
.scroll-animate.delay-10 { transition-delay: 1.0s; }
.scroll-animate.delay-11 { transition-delay: 1.1s; }

.scroll-animate.from-left {
  transform: translateX(-40px);
}

.scroll-animate.from-left.animated {
  transform: translateX(0);
}

.scroll-animate.from-right {
  transform: translateX(40px);
}

.scroll-animate.from-right.animated {
  transform: translateX(0);
}

.scroll-animate.scale-in {
  transform: scale(0.9);
}

.scroll-animate.scale-in.animated {
  transform: scale(1);
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #D4AF37;
  transition: fill 0.3s ease;
}

.social-icon:hover svg {
  fill: #1a1a1a;
}

/* Enhanced Button Hover Effects */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::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-shine:hover::before {
  left: 100%;
}

/* Card Hover Enhancements */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-3d:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

/* Smooth Page Transitions */
.page-transition {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 3px;
}

/* Selection Color */
::selection {
  background: #D4AF37;
  color: #1a1a1a;
}

::-moz-selection {
  background: #D4AF37;
  color: #1a1a1a;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* ================================
   COMING SOON OVERLAY
================================ */
body.coming-soon-open {
  overflow: hidden;
}

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9996;
  display: none;
}

.coming-soon-overlay.active {
  display: block;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.coming-soon-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 2rem));
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.92);
}

.coming-soon-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.08);
  color: #D4AF37;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.coming-soon-close:hover {
  transform: scale(1.05);
  background: rgba(212, 175, 55, 0.14);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.coming-soon-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
  color: #fff;
}

.coming-soon-text {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.coming-soon-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.coming-soon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: #D4AF37;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.coming-soon-btn:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
}

.coming-soon-btn.primary {
  background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
  color: #1a1a1a;
  border: none;
}

.coming-soon-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

@media (max-width: 480px) {
  .coming-soon-modal {
    width: calc(100vw - 1.6rem);
    padding: 1.7rem 1.3rem 1.3rem;
    border-radius: 20px;
  }

  .coming-soon-title {
    font-size: 1.55rem;
  }

  .coming-soon-actions {
    flex-direction: column;
  }

  .coming-soon-btn {
    width: 100%;
  }
}

/* Image Loading Effect */
.img-loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

