/* Enhanced Visual Design CSS for Vantage Notary Website */

/* Gradient Backgrounds */
body {
  background: linear-gradient(135deg, #f0f0f5 0%, #e8eaf6 100%);
}

.hero {
  background: linear-gradient(to bottom, #e8eaf6, #f0f0f5);
  position: relative;
  overflow: hidden;
}

/* Geometric Accent Elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201, 169, 92, 0.1);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(26, 54, 93, 0.05);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Section Differentiation */
.section {
  position: relative;
  overflow: hidden;
}

.section:nth-child(odd) {
  background: linear-gradient(135deg, #f0f0f5 0%, #e8eaf6 100%);
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #e8eaf6 0%, #f0f0f5 100%);
}

/* Decorative Elements */
.section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 50% 50% / 50%;
  background: rgba(201, 169, 92, 0.05);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.section:nth-child(even)::before {
  left: -150px;
  right: auto;
  border-radius: 50% 50% 30% 70% / 50%;
  background: rgba(26, 54, 93, 0.05);
}

/* Neumorphic UI Elements */
.btn {
  border-radius: 8px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
              -5px -5px 10px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
              -3px -3px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
              inset -2px -2px 5px rgba(255, 255, 255, 0.8);
  transform: translateY(0);
}

/* Card Enhancements */
.service-card {
  border-radius: 12px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1),
              -8px -8px 16px rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  background: linear-gradient(145deg, #ffffff, #f0f0f5);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.15),
              -12px -12px 20px rgba(255, 255, 255, 0.9);
}

/* Service Detail Enhancements */
.service-detail {
  border-radius: 16px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
              -10px -10px 20px rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #ffffff, #f5f5fa);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201, 169, 92, 0.1);
  z-index: 0;
}

.service-info-card {
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05),
              -5px -5px 10px rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #f0f0f5, #e8eaf6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.service-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.08),
              -8px -8px 16px rgba(255, 255, 255, 0.9);
}

/* Header Enhancements */
header {
  background: linear-gradient(to right, #f0f0f5, #e8eaf6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

/* Footer Enhancements */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--gold), var(--dark-navy));
}

/* Contact Form Enhancements */
.contact-form {
  border-radius: 16px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
              -10px -10px 20px rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #ffffff, #f5f5fa);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
  border-radius: 8px;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.05),
              inset -3px -3px 6px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f8fc;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.05),
              inset -2px -2px 4px rgba(255, 255, 255, 0.8);
  border-color: var(--gold);
}

/* Gold Accent Enhancements */
.gold-accent {
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(201, 169, 92, 0.3));
  border-radius: 3px;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-triggered animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animated {
  animation: fadeInUp 0.6s ease forwards;
}

/* Logo Enhancement */
.logo img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Navigation Enhancements */
.nav-menu a::after {
  background: linear-gradient(to right, var(--gold), rgba(201, 169, 92, 0.5));
  border-radius: 2px;
}

/* Map Container Enhancement */
.map-container {
  border-radius: 16px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
              -10px -10px 20px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Simple Map Enhancements */
.simple-map {
  background: linear-gradient(145deg, #f0f0f5, #e8eaf6);
}

.service-area-circle {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.05),
              inset -3px -3px 6px rgba(255, 255, 255, 0.5);
}

/* FAQ Enhancements */
.faq-item {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: linear-gradient(145deg, #ffffff, #f5f5fa);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05),
              -5px -5px 10px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.07),
              -7px -7px 14px rgba(255, 255, 255, 0.9);
}

.faq-question {
  color: var(--dark-navy);
  font-weight: bold;
}

.faq-question::after {
  color: var(--gold);
}

/* Responsive adjustments for enhanced design */
@media (max-width: 768px) {
  .service-card,
  .service-info-card,
  .service-detail,
  .contact-form,
  .faq-item {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
                -5px -5px 10px rgba(255, 255, 255, 0.8);
  }
  
  .hero::before,
  .hero::after,
  .section::before {
    width: 150px;
    height: 150px;
  }
}

/* Prefers-reduced-motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .animate-on-scroll,
  .animated,
  .service-card,
  .service-info-card,
  .btn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
 
}
