/* Buddha Bliss - Sacred Luxury Design System */

:root {
    /* Core Sacred Palette */
    --background: hsl(45, 30%, 97%);
    --foreground: hsl(220, 30%, 15%);
    
    /* Himalayan Blue - Primary */
    --primary: hsl(215, 60%, 25%);
    --primary-foreground: hsl(45, 30%, 97%);
    --primary-light: hsl(215, 50%, 45%);
    
    /* Sacred Saffron/Gold - Accent */
    --accent: hsl(35, 85%, 55%);
    --accent-foreground: hsl(220, 30%, 15%);
    --accent-gold: hsl(40, 75%, 50%);
    --accent-warm: hsl(25, 80%, 60%);
    
    /* Sacred Sand/Off-White */
    --card: hsl(45, 25%, 95%);
    --card-foreground: hsl(220, 30%, 15%);
    
    /* Forest Green - Secondary */
    --secondary: hsl(160, 35%, 30%);
    --secondary-foreground: hsl(45, 30%, 97%);
    --secondary-light: hsl(160, 30%, 45%);
    
    /* Muted Tones */
    --muted: hsl(45, 15%, 90%);
    --muted-foreground: hsl(220, 15%, 45%);
    
    /* Borders */
    --border: hsl(45, 20%, 85%);
    
    /* Radius */
    --radius: 0.75rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Utility Classes */
.text-gradient-gold {
    background: linear-gradient(135deg, hsl(40, 75%, 50%), hsl(35, 85%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-muted {
    background-color: var(--muted);
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Header */
#header {
    transition: all 0.5s ease;
    z-index: 1000;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.15);
}

#header:not(.scrolled) {
    background-color: transparent;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}
.navbar-brand img{
    width: 140px;
    height: 100%;
}
#header.scrolled .navbar-brand img{
    width: 100px;
    height: 100%;
}
.brand-text {
    color: var(--primary);
}

#header.scrolled .brand-text {
    color: var(--primary);
}

#header:not(.scrolled) .brand-text {
    color: var(--primary-foreground);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}

#header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#header:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn {
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    padding: 0.625rem 1.5rem;
}

.btn-sacred {
    background-color: var(--accent);
    color: var(--accent-foreground);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-sacred:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-hero {
    background-color: var(--accent);
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.btn-hero:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-hero-outline {
    background-color: var(--accent);
    color: var(--accent-foreground);
    font-weight: 600;
    padding: 0.875rem 2.5rem;
}
.btn-hero-outline:hover {
    transform: scale(1.02);
    background-color: var(--accent-gold);
}

.btn-whatsapp {
    background-color: hsl(142, 70%, 40%);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:hover {
    background-color: hsl(142, 70%, 35%);
    transform: scale(1.02);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 30, 50, 0.6), rgba(20, 35, 55, 0.7), rgba(20, 35, 55, 0.9));
    background: linear-gradient(to right, rgba(15, 30, 50, 0.5), transparent, rgba(20, 35, 55, 0.3));
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 30, 50, 0.6), rgba(20, 35, 55, 0.7), rgba(20, 35, 55, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    margin-bottom: 1rem;
}

.hero-trust {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}
#top-form{
    text-align: center;
    padding: 30px;
}
#top-form h3{
    font-weight: bold;
}
#top-form .accept{
    font-size: 14px;
    margin-top: 10px;
}
#top-form ::placeholder {
    opacity: 0.35;
}
.trust-divider {
    width: 1px;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: inline-block;
}
.trust-dot.bg-secondary-light{
    background-color: var(--secondary-light);
}
.trust-dot.bg-accent-gold{
    background-color: var(--accent-gold);
}
.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulseSoft 3s ease-in-out infinite;
}

@keyframes pulseSoft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: float 6s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(15, 30, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-stat:hover .trust-icon {
    background-color: rgba(255, 193, 7, 0.2);
}

.trust-stat:hover .trust-icon i {
    color: var(--accent);
}

.trust-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .trust-value {
        font-size: 2.5rem;
    }
}

.trust-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}
#gallery{
    padding-top: 40px;
}
.gallery-swiper {
  width: 100%;
  padding: 20px 0;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}




/* Section Styles */
.section-badge {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Reason Cards */
.reason-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    transition: all 0.5s;
    height: 100%;
}

.reason-card:hover {
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.reason-card.highlight {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.15);
}

.reason-card.highlight:hover {
    transform: scale(1.02);
}

.highlight-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.reason-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: rgba(15, 30, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.reason-card.highlight .reason-icon {
    background-color: rgba(255, 193, 7, 0.2);
}

.reason-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: color 0.3s;
}

.reason-card.highlight .reason-icon i {
    color: var(--accent);
}

.reason-card:hover .reason-icon {
    background-color: rgba(255, 193, 7, 0.2);
}

.reason-card:hover .reason-icon i {
    color: var(--accent);
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.reason-card.highlight h3 {
    color: var(--primary-foreground);
}

.reason-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.reason-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

/* Highlights Section */
.highlights-list {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.5s;
    margin-bottom: 1.5rem;
}

.highlight-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

.highlight-item.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.15);
}

.highlight-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(15, 30, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s;
}

.highlight-item.active .highlight-number {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.highlight-item:hover .highlight-number {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--accent);
}

.highlight-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.highlight-item.active .highlight-content h3 {
    color: var(--primary-foreground);
}

.highlight-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.highlight-item.active .highlight-content p {
    color: rgba(255, 255, 255, 0.8);
}

.highlights-image-wrapper {
    position: relative;
}

.highlights-image-container {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
}

.highlight-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.7s;
}

.highlight-image.active {
    opacity: 1;
    transform: scale(1);
}

.highlights-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 30, 50, 0.4), transparent);
}

.image-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.image-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.image-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.image-dot.active {
    width: 1.5rem;
    background-color: var(--accent);
}

/* Inclusion Cards */
.inclusion-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inclusion-card:hover {
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
}

.inclusion-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(22, 78, 99, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.inclusion-card:hover .inclusion-icon {
    background-color: rgba(255, 193, 7, 0.2);
}

.inclusion-icon i {
    font-size: 1.25rem;
    color: var(--secondary);
    transition: color 0.3s;
}

.inclusion-card:hover .inclusion-icon i {
    color: var(--accent);
}

.inclusion-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.inclusion-check {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inclusion-check i {
    font-size: 0.75rem;
    color: var(--secondary-foreground);
}

.additional-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
}

.additional-info i {
    font-size: 1.25rem;
}

.additional-info span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Booking Steps */
#how-to-book, #journey{
    background-color: var(--primary);
}
.booking-step {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
}

.booking-step:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.booking-step:hover .step-icon {
    background-color: rgba(255, 193, 7, 0.3);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.booking-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.booking-step p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
}

.testimonial-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(255, 193, 7, 0.2);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-quote-icon {
        left: 3rem;
    }
}

.testimonial-carousel {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

@media (min-width: 768px) {
    .testimonial-carousel {
        padding: 3rem;
    }
}

.testimonial-item {
    position: absolute;
    inset: 0;
    padding: 2rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s;
}

@media (min-width: 768px) {
    .testimonial-item {
        padding: 3rem;
    }
}

.testimonial-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-item.prev {
    transform: translateX(-100%);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    font-size: 1.25rem;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.25rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.testimonial-btn i {
    font-size: 1.25rem;
    color: var(--foreground);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dot:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.testimonial-dot.active {
    width: 2rem;
    background-color: var(--accent);
}

/* FAQ */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.faq-item.active .faq-question i {
    background-color: var(--accent);
    color: var(--accent-foreground);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.cta-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
    filter: blur(60px);
}

.cta-decoration-1 {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.cta-decoration-2 {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 28rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--foreground);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-contact a,
.footer-contact span {
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: block;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border);
        margin-top: 1rem;
        padding: 1.5rem 0;
    }
    
    #header:not(.scrolled) .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .nav-link {
        color: var(--foreground) !important;
        padding: 0.75rem 1rem !important;
    }
}
#next_button {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		text-align: center;
		display: table;
		z-index: 999;
	}

	#next_button a {
		text-decoration: none;
	}


	.below-button-container {
		border-radius: 12px 12px 0px 0px;
		width: 90%;
		margin:auto;
		background: linear-gradient(90deg, #df9f20, #ee9d2b);
		padding: 3%;
		animation: pulseGlow 1.8s infinite;
  position: relative;
  overflow: hidden;
	}


/* Glow wave effect */
.below-button-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 2.5s infinite;
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(238, 157, 43, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(238, 157, 43, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(238, 157, 43, 0);
  }
}

/* Shine animation */
@keyframes shine {
  0% {
    left: -100%;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@media (min-width:680px) {
	#next_button {
	  display: none
	}
}
.whatsapp-float {
  position: fixed;
  bottom: 65px;
  left: 20px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 28px;
  z-index: 1000;
}
.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-float:hover {
  animation: none;
}
