/* 
 * jewelry-services.css - Premium Jewelry & Gemstone Services Page
 * Elegant styling for ArtJewel NatureTrails jewelry services
 */

/* =============================================
 * JEWELRY-SPECIFIC COLOR VARIABLES
 * ============================================= */

:root {
  /* Jewelry-specific colors */
  --jewelry-gold: #D4AF37;
  --jewelry-gold-light: #F7DC6F;
  --jewelry-gold-dark: #B7950B;
  --jewelry-platinum: #E5E4E2;
  --jewelry-diamond: #B9F2FF;
  --jewelry-ruby: #E0115F;
  --jewelry-sapphire: #0F52BA;
  --jewelry-emerald: #50C878;
  
  /* Premium gradients for jewelry */
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F7DC6F 50%, #D4AF37 100%);
  --diamond-gradient: linear-gradient(135deg, #B9F2FF 0%, #E5E4E2 50%, #B9F2FF 100%);
  --luxury-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --premium-gold-gradient: linear-gradient(45deg, #D4AF37, #F7DC6F, #E6B800, #D4AF37);
  
  /* Jewelry shadows */
  --jewelry-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
  --premium-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --glow-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* =============================================
 * HERO SECTION
 * ============================================= */

.jewelry-hero {
  position: relative;
  min-height: 100vh;
  background: var(--luxury-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(22, 33, 62, 0.8) 50%,
    rgba(15, 52, 96, 0.9) 100%
  );
  z-index: 1;
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.particle-1 {
  width: 200px;
  height: 200px;
  background: var(--jewelry-gold);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 150px;
  height: 150px;
  background: var(--jewelry-diamond);
  top: 20%;
  right: 15%;
  animation-delay: 3s;
}

.particle-3 {
  width: 100px;
  height: 100px;
  background: var(--jewelry-sapphire);
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}

.particle-4 {
  width: 120px;
  height: 120px;
  background: var(--jewelry-ruby);
  bottom: 20%;
  right: 25%;
  animation-delay: 9s;
}

.particle-5 {
  width: 80px;
  height: 80px;
  background: var(--jewelry-emerald);
  top: 60%;
  left: 60%;
  animation-delay: 12s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge i {
  margin-right: 0.5rem;
  color: var(--jewelry-gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.3); }
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--jewelry-gold);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
 * SECTION BADGES
 * ============================================= */

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--jewelry-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-badge i {
  margin-right: 0.5rem;
}

/* =============================================
 * CRAFTSMAN SECTION WITH YOUTUBE INTEGRATION
 * ============================================= */

.craftsman-section {
  background-color: var(--dark-secondary);
  position: relative;
}

.craftsman-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text-primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--dark-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.craftsman-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--dark-tertiary);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--jewelry-gold);
  transition: all var(--transition-fast);
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: var(--jewelry-shadow);
}

.highlight-item i {
  color: var(--jewelry-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.highlight-item h5 {
  color: var(--dark-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-item p {
  color: var(--dark-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* YouTube Integration Styles */
.craftsman-social {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.social-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.social-description {
  color: var(--dark-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
  background: linear-gradient(135deg, #cc0000, #990000);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-youtube-outline {
  background: transparent;
  color: #ff0000;
  border: 2px solid #ff0000;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.btn-youtube-outline:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-quaternary));
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.video-placeholder:hover::before {
  transform: translateX(100%);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
  animation: pulse-youtube 2s infinite alternate;
}

.play-button:hover {
  background: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.play-button i {
  color: #fff;
  font-size: 1.8rem;
  margin-left: 3px; /* Adjust play icon positioning */
}

@keyframes pulse-youtube {
  0% {
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.3);
    transform: scale(1.02);
  }
}

.video-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.video-info i {
  color: #ff0000;
}

.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-text-primary);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 0, 0, 0.1);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

/* =============================================
 * VIDEO SHOWCASE SECTION
 * ============================================= */

.video-showcase-section {
  background-color: var(--dark-color);
}

.main-video-container {
  margin-bottom: 3rem;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.video-placeholder-large {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-placeholder-large:hover {
  background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-quaternary));
}

.play-button-large {
  width: 100px;
  height: 100px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
  animation: pulse-youtube-large 3s infinite alternate;
}

.play-button-large:hover {
  background: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.play-button-large i {
  color: #fff;
  font-size: 2.5rem;
  margin-left: 4px;
}

@keyframes pulse-youtube-large {
  0% {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.3);
    transform: scale(1.03);
  }
}

.video-placeholder-large h3 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-text-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.video-placeholder-large p {
  color: var(--dark-text-secondary);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.video-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.video-meta span {
  display: flex;
  align-items: center;
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.video-meta i {
  color: var(--jewelry-gold);
  margin-right: 0.5rem;
}

/* Video Card Styles */
.video-card {
  background: var(--dark-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-quaternary));
  overflow: hidden;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  opacity: 0.8;
}

.play-overlay:hover {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.play-overlay i {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 2px;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-info {
  padding: 1.5rem;
}

.video-info h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.video-info p {
  color: var(--dark-text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.video-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--dark-text-muted);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.video-stats i {
  color: var(--jewelry-gold);
}

/* =============================================
 * SERVICES SECTION
 * ============================================= */

.services-section {
  background-color: var(--dark-color);
}

.service-card {
  background: var(--dark-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: all var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--jewelry-shadow);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card.featured {
  border: 2px solid var(--jewelry-gold);
  background: linear-gradient(145deg, var(--dark-secondary), var(--dark-tertiary));
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold-gradient);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--jewelry-shadow);
}

.service-icon i {
  font-size: 2rem;
  color: var(--dark-color);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--dark-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--dark-text-muted);
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--jewelry-gold);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.service-btn {
  color: var(--jewelry-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.service-btn:hover {
  color: var(--jewelry-gold-light);
  transform: translateX(5px);
}

.service-btn i {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.service-btn:hover i {
  transform: translateX(3px);
}

/* =============================================
 * SPECIALTIES SECTION
 * ============================================= */

.specialties-section {
  background-color: var(--dark-secondary);
}

.specialty-card {
  background: var(--dark-tertiary);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

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

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(212, 175, 55, 0.2);
}

.specialty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.specialty-icon.sapphire {
  background: linear-gradient(135deg, var(--jewelry-sapphire), #4169E1);
  color: #fff;
}

.specialty-icon.ruby {
  background: linear-gradient(135deg, var(--jewelry-ruby), #DC143C);
  color: #fff;
}

.specialty-icon.yellow {
  background: linear-gradient(135deg, var(--jewelry-gold), var(--jewelry-gold-light));
  color: var(--dark-color);
}

.specialty-icon.star {
  background: linear-gradient(135deg, var(--jewelry-platinum), #C0C0C0);
  color: var(--dark-color);
}

.specialty-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.specialty-card p {
  color: var(--dark-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.specialty-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--jewelry-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* =============================================
 * PROCESS SECTION
 * ============================================= */

.process-section {
  background-color: var(--dark-color);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  z-index: 2;
  box-shadow: var(--jewelry-shadow);
}

.process-content {
  flex: 1;
  background: var(--dark-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  max-width: 350px;
}

.process-step:nth-child(odd) .process-content {
  margin-right: 2rem;
  text-align: right;
}

.process-step:nth-child(even) .process-content {
  margin-left: 2rem;
  text-align: left;
}

.process-content h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-content p {
  color: var(--dark-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.process-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--dark-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jewelry-gold);
  font-size: 1rem;
  z-index: 1;
}

.process-step:nth-child(odd) .process-icon {
  right: -20px;
  top: 20px;
}

.process-step:nth-child(even) .process-icon {
  left: -20px;
  top: 20px;
}

/* =============================================
 * WHY CHOOSE SECTION
 * ============================================= */

.why-choose-section {
  background-color: var(--dark-secondary);
}

.why-choose-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text-primary);
}

.why-choose-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--dark-tertiary);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--jewelry-gold);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--jewelry-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--jewelry-shadow);
}

.feature-icon i {
  color: var(--dark-color);
  font-size: 1.3rem;
}

.feature-content h5 {
  color: var(--dark-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: var(--dark-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
 * TESTIMONIALS SECTION
 * ============================================= */

.testimonials-section {
  background-color: var(--dark-color);
}

.testimonial-card {
  background: var(--dark-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--jewelry-gold);
  font-size: 1rem;
  margin-right: 0.2rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--dark-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--jewelry-gold);
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
}

.testimonial-author h5 {
  color: var(--dark-text-primary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.testimonial-author p {
  color: var(--dark-text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* =============================================
 * CONTACT SECTION
 * ============================================= */

.contact-section {
  background-color: var(--dark-secondary);
}

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text-primary);
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--dark-tertiary);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  transform: translateX(5px);
  border-left: 4px solid var(--jewelry-gold);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--dark-color);
  font-size: 1.1rem;
}

.contact-details h5 {
  color: var(--dark-text-primary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-details p {
  color: var(--dark-text-muted);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--dark-tertiary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-medium);
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark-secondary);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--dark-text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-small);
  transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--dark-secondary);
  border-color: var(--jewelry-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  color: var(--dark-text-primary);
}

.contact-form .form-control::placeholder {
  color: var(--dark-text-muted);
}

/* =============================================
 * CTA SECTION
 * ============================================= */

.cta-section {
  background: var(--luxury-gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
  z-index: 1;
}

.cta-card {
  background: var(--glass-gradient);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius-large);
  padding: 4rem 3rem;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: var(--premium-shadow);
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse 2s infinite alternate;
}

.cta-icon i {
  font-size: 2.5rem;
  color: var(--dark-color);
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
 * BUTTON ENHANCEMENTS
 * ============================================= */

.btn-premium {
  background: var(--gold-gradient);
  color: var(--dark-color);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--jewelry-shadow);
  transition: all var(--transition-fast);
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--premium-gold-gradient);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
  animation: gradientShift 4s ease infinite;
}

.btn-premium:hover {
  color: var(--dark-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-shadow);
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--dark-color);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* =============================================
 * ANIMATIONS
 * ============================================= */

@keyframes pulse {
  0% {
    box-shadow: var(--jewelry-shadow);
    transform: scale(1);
  }
  100% {
    box-shadow: var(--glow-shadow);
    transform: scale(1.05);
  }
}

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

/* =============================================
 * RESPONSIVE DESIGN
 * ============================================= */

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-number,
  .stat-label {
    margin: 0;
  }
  
  .craftsman-highlights {
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .process-number {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }
  
  .process-content {
    max-width: none;
    margin: 0 !important;
    text-align: center !important;
  }
  
  .process-icon {
    display: none;
  }
  
  .visual-placeholder {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-premium,
  .btn-outline-light {
    width: 100%;
    max-width: 300px;
  }
  
  .service-card,
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .cta-card {
    padding: 3rem 2rem;
  }
  
  .cta-card h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .contact-icon {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title,
  .craftsman-content h2,
  .why-choose-content h2,
  .contact-content h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .specialty-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .particle {
    display: none;
  }
}

/* =============================================
 * LIGHT THEME OVERRIDES
 * ============================================= */

body.light-theme .jewelry-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

body.light-theme .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.9) 0%,
    rgba(233, 236, 239, 0.8) 50%,
    rgba(222, 226, 230, 0.9) 100%
  );
}

body.light-theme .hero-content,
body.light-theme .hero-title,
body.light-theme .hero-subtitle {
  color: var(--light-text-primary);
}

body.light-theme .craftsman-section,
body.light-theme .why-choose-section,
body.light-theme .contact-section {
  background-color: var(--light-secondary);
}

body.light-theme .services-section,
body.light-theme .testimonials-section {
  background-color: var(--light-color);
}

body.light-theme .specialties-section {
  background-color: var(--light-tertiary);
}

body.light-theme .service-card,
body.light-theme .specialty-card,
body.light-theme .testimonial-card,
body.light-theme .highlight-item,
body.light-theme .feature-item,
body.light-theme .contact-item,
body.light-theme .process-content {
  background: var(--light-secondary);
  border-color: var(--light-border);
  color: var(--light-text-primary);
}

body.light-theme .contact-form-wrapper,
body.light-theme .contact-form .form-control,
body.light-theme .contact-form .form-select {
  background: var(--light-secondary);
  border-color: var(--light-border);
  color: var(--light-text-primary);
}

body.light-theme .cta-section {
  background: linear-gradient(135deg, #6c757d 0%, #495057 50%, #343a40 100%);
}

/* =============================================
 * PRINT STYLES
 * ============================================= */

@media print {
  .jewelry-hero {
    background: none !important;
    color: black !important;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-particles,
  .particle {
    display: none !important;
  }
  
  .service-card,
  .specialty-card,
  .testimonial-card {
    background: white !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    break-inside: avoid;
  }
  
  .cta-section {
    background: #f8f9fa !important;
    color: black !important;
  }
  
  .btn-premium,
  .btn-outline-light {
    background: #007bff !important;
    color: white !important;
    border: 1px solid #007bff !important;
  }
}