/* Section backgrounds with violet tones */
.bg-violet-light {
    background-color: #f5f0f8;
}

/* Dark section with magenta tones */
.bg-dark {
    background-color: #4a1a4a;
}

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

/* Custom font sizes */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* Navigation background on scroll */
.navbar-scrolled {
    background-color: rgba(44, 62, 80, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero section */
#hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Section padding adjustments */
section {
    scroll-margin-top: 80px;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

/* FAQ accordion animation */
.faq-toggle {
    transition: background-color 0.2s ease;
}

.faq-toggle:hover {
    background-color: rgba(155, 0, 113, 0.05);
}

.faq-content {
    animation: slideDown 0.3s ease;
 slideDown {
   }

@keyframes from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button pulse animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(155, 0, 113, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(155, 0, 113, 0);
    }
}

.pulse-button {
    animation: pulse 2s infinite;
}

/* Image hover zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #9b0071, #eb82cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

::-webkit-scrollbar-thumb {
    background: #9b0071;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a005c;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Testimonial cards */
.testimonial-card {
    border-left: 4px solid #9b0071;
}

/* Price card highlight */
.price-featured {
    position: relative;
    overflow: hidden;
}

.price-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #e8d48a, #c9a227);
}

/* Section title underline */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c9a227;
}

/* form success message */
    .form-success {
      margin: 0 0 0.9rem;
      padding: 0.8rem 0.9rem;
      border: 1px solid rgba(44, 111, 103, 0.35);
      border-radius: 12px;
      background: rgba(211, 231, 228, 0.55);
      color: #1b5e57;
      font-size: 0.92rem;
      font-weight: 700;
    }

    .form-success[hidden] {
      display: none;
    }

/* Form focus states */
input:focus, textarea:focus {
    outline: none;
    border-color: #9b0071;
    box-shadow: 0 0 0 3px rgba(155, 0, 113, 0.1);
}

/* Smooth link hover */
a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* Selection color */
::selection {
    background-color: #9b0071;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero {
        background-attachment: scroll;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
