* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --black: #0a0a0a;
    --deep-black: #000000;
    --red: #cc0000;
    --dark-red: #8b0000;
    --yellow: #ffd700;
    --bright-yellow: #ffcc00;
    --white: #ffffff;
    --light-gray: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-size: 0.85rem;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

section, div, main, article, aside {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img, video {
    max-width: 100%;
    height: auto;
}

.navbar {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--black) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.5);
    border-bottom: 2px solid var(--red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Cinzel', Georgia, serif;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.03em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(139, 0, 0, 0.5) 100%),
                url('attached_assets/WhatsApp Image 2025-11-04 at 12.53.04 PM_1762826381930.jpeg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--yellow) 0%, var(--bright-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--red);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.02em;
}

.hero-text {
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    line-height: 1.55;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6);
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
}

.page-header {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.page-header p {
    font-size: 0.92rem;
    opacity: 0.9;
}

.content {
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
}

.content h2 {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.content p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.intro-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(139, 0, 0, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-card h3 {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.intro-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.video-card {
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.ritual-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    min-height: 300px;
}

.ritual-video::-webkit-media-controls {
    display: none !important;
}

.ritual-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.ritual-video::-webkit-media-controls-panel {
    display: none !important;
}

.ritual-video::-webkit-media-controls-play-button {
    display: none !important;
}

.ritual-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.why-choose {
    margin: 5rem 0;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.trust-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(139, 0, 0, 0.3) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 5rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-text h2 {
    text-align: center;
    color: var(--red);
    margin-bottom: 2rem;
}

.about-text p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-section {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #0a0a0a 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.4);
    border: 2px solid rgba(204, 0, 0, 0.3);
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(204, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stats-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(204, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@supports not (backdrop-filter: blur(10px)) {
    .experience-card {
        background: rgba(10, 10, 10, 0.95);
    }
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: #cc0000;
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.6);
}

.experience-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    animation: float 3s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
    .stat-icon {
        animation: none;
    }
}

.exp-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0.5rem 0;
    font-family: 'Cinzel', Georgia, serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    display: inline-block;
    min-width: 120px;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    display: inline-block;
    margin-left: -0.3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.experience-card h3 {
    color: #cc0000;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.6;
}

.values-section {
    margin: 5rem 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.value-content h3 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.value-content p {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--red);
    margin-bottom: 1rem;
}

.step p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.services-intro {
    margin-bottom: 2.5rem;
}

.services-intro p {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 1rem;
    font-size: 0.95rem;
}

/* Dark Services Grid Styles */
.dark-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
    margin: 2rem 0;
}

.dark-service-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.service-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.dark-service-card h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.02em;
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    min-height: 50px;
}

.service-duration {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--bright-yellow) 100%);
    color: var(--deep-black);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-bottom: 0.7rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.service-rating {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 0.8rem;
}

/* Guarantee Section */
.guarantee-section {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.guarantee-section h2 {
    color: var(--yellow);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.guarantee-section > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.process-section {
    margin: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(139, 0, 0, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--red);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-intro {
    margin-bottom: 2.5rem;
}

.testimonials-intro p {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.3rem;
    margin: 2rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(204, 0, 0, 0.2);
    border-radius: 12px;
    max-width: 360px;
    margin: 0 auto;
    padding: 1.4rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
    border-color: var(--red);
}

.testimonial-card.featured {
    border-color: var(--yellow);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(204, 0, 0, 0.2) 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1rem;
}

.testimonial-date {
    color: #888;
    font-size: 0.8rem;
}

.testimonial-text {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(204, 0, 0, 0.3);
}

.author-name {
    font-weight: 600;
    color: var(--red);
    font-size: 0.88rem;
}

.author-location {
    color: #888;
    font-size: 0.85rem;
}

/* New Testimonial Design */
.testimonial-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.testimonial-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-info .author-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.verified-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.testimonial-info .author-location {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-info .testimonial-stars {
    color: var(--yellow);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.testimonial-card .testimonial-text {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
}

.testimonial-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.service-type {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2) 0%, rgba(204, 0, 0, 0.1) 100%);
    color: var(--red);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.success-indicator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-time {
    color: #888;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.trust-badges {
    margin: 5rem 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-weight: 600;
}

.contact-intro {
    margin-bottom: 4rem;
}

.contact-intro p {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form-section h3,
.contact-info-section h3 {
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--red);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid rgba(204, 0, 0, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.form-privacy {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

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

.success-message {
    background: linear-gradient(135deg, rgba(0, 150, 0, 0.15) 0%, rgba(0, 100, 0, 0.1) 100%);
    border: 2px solid #00aa00;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.error-message {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.15) 0%, rgba(150, 0, 0, 0.1) 100%);
    border: 2px solid var(--red);
    color: #ff6666;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
}

.contact-method {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(139, 0, 0, 0.3) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.method-icon {
    font-size: 2.5rem;
}

.method-content h4 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.method-content p {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    margin: 0.5rem 0;
}

.contact-link:hover {
    color: var(--red);
}

.method-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.availability,
.privacy-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.availability h4,
.privacy-note h4 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.availability p,
.privacy-note p {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

.faq-section {
    margin: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
}

.faq-item h4 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.faq-item p {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

.footer {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-contact h3 {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin: 0.3rem 0;
    color: var(--white);
}

.footer-copyright p {
    color: var(--white);
    font-size: 0.9rem;
}

.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.7);
}

.call-float svg {
    width: 28px;
    height: 28px;
}

.call-float .float-text {
    font-size: 0.65rem;
    color: var(--white);
    margin-top: 2px;
    font-weight: 500;
}

.hero-guarantee {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--yellow);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: var(--yellow);
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-float {
    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 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-button-orange {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    min-width: 30px;
}

.faq-icon {
    margin-left: auto;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.ritual-videos-section {
    margin: 5rem 0;
}

.ritual-videos-section h2 {
    text-align: center;
    color: var(--red);
    margin-bottom: 3rem;
}

.method-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.method-section h2 {
    color: var(--red);
    margin-bottom: 2rem;
    text-align: center;
}

.method-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.situations-section {
    margin: 5rem 0;
}

.situations-section h2 {
    text-align: center;
    color: var(--red);
    margin-bottom: 3rem;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.situation-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(139, 0, 0, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.situation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.situation-card:hover::before {
    left: 100%;
}

.situation-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--red);
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.4);
}

.situation-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.situation-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.situation-card h3 {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.approach-section {
    position: relative;
    max-width: 100%;
    margin: 6rem 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.approach-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('attached_assets/image_1762831811446.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

.approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(139, 0, 0, 0.5) 50%, rgba(204, 0, 0, 0.3) 100%);
    z-index: 2;
}

.approach-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    color: var(--white);
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease;
}

.approach-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.approach-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

.approach-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.approach-feature-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(204, 0, 0, 0.4);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

.approach-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-feature-card:hover::before {
    opacity: 1;
}

.approach-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.approach-feature-card:hover .feature-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
}

.approach-feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-weight: 600;
}

.approach-feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.approach-quote {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--red);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

.quote-icon {
    font-size: 5rem;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.approach-quote p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-author {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 600;
    letter-spacing: 1px;
}

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

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5);
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    .nav-container,
    .container,
    .content,
    section {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        max-width: 100vw;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        min-height: 500px;
        height: auto;
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .page-header {
        padding: 3rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    .intro-grid,
    .services-grid,
    .testimonials-grid,
    .dark-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .experience-section {
        padding: 3rem 1rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-btn {
        font-size: 0.8rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
        hyphens: auto;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-guarantee {
        margin-top: 1.5rem;
    }

    .guarantee-badge {
        padding: 0.6rem 1rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.85rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* 100% Guarantee Section */
/* Voodoo Mystical Guarantee Section */
.voodoo-guarantee-section {
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #0a0000 50%, #1a0000 75%, #000000 100%);
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.2), 0 0 15px rgba(255, 215, 0, 0.15);
}

.voodoo-guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: mysticPulse 8s ease-in-out infinite;
}

@keyframes mysticPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.mystic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(204, 0, 0, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.5), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(204, 0, 0, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleFloat 12s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%; }
    50% { background-position: 100% 100%, 0% 0%, 30% 70%, 60% 40%, 40% 60%; }
}

.ritual-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, transparent 30%, rgba(255, 215, 0, 0.05) 31%, transparent 32%, rgba(204, 0, 0, 0.08) 60%, transparent 61%);
    opacity: 0.3;
    animation: ritualRotate 30s linear infinite;
}

@keyframes ritualRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.guarantee-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ceremonial-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffd700;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.mystic-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 400;
}

.incantation-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.6rem 0 1rem;
}

.divider-symbol {
    color: #ffd700;
    font-size: 0.7rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.divider-line {
    flex: 0 1 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.voodoo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.6rem;
    margin: 1rem 0;
}

.voodoo-feature {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.8rem 0.6rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.voodoo-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.voodoo-feature:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.4);
}

.voodoo-feature:hover::before {
    opacity: 1;
}

.sigil-circle {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(204, 0, 0, 0.08) 100%);
    border: 1px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3), inset 0 0 5px rgba(204, 0, 0, 0.15);
    animation: sigilGlow 3s ease-in-out infinite;
}

@keyframes sigilGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3), inset 0 0 5px rgba(204, 0, 0, 0.15); }
    50% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), inset 0 0 8px rgba(204, 0, 0, 0.25); }
}

.voodoo-icon {
    width: 26px;
    height: 26px;
    color: #ffd700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.feature-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(0.7rem, 0.85vw, 0.75rem);
    color: #ffd700;
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.feature-desc {
    font-size: clamp(0.65rem, 0.75vw, 0.68rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.sacred-seal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.seal-symbol {
    font-size: 0.9rem;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.seal-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(0.65rem, 0.85vw, 0.7rem);
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    max-width: 450px;
    margin: 0;
}

@media (max-width: 768px) {
    .voodoo-guarantee-section {
        padding: 1.2rem 0.8rem;
        margin: 1.5rem 0;
    }

    .ceremonial-title {
        font-size: 1.1rem;
    }

    .mystic-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .voodoo-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .voodoo-feature {
        padding: 0.7rem 0.5rem;
    }

    .sigil-circle {
        width: 35px;
        height: 35px;
    }

    .voodoo-icon {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 0.7rem;
    }

    .feature-desc {
        font-size: 0.65rem;
    }

    .sacred-seal {
        flex-direction: column;
        text-align: center;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .seal-text {
        font-size: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .voodoo-guarantee-section::before,
    .mystic-particles,
    .ritual-circle-bg,
    .sigil-circle {
        animation: none;
    }
}

/* Old guarantee section kept for compatibility */
.guarantee-section {
    display: none;
}

.guarantee-point .point-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.guarantee-point .point-text {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.guarantee-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    font-style: italic;
}

/* Google Rating Widget */
.google-rating-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.google-logo {
    width: 28px;
    height: 28px;
}

.google-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.google-stars-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.8rem 0;
}

.google-stars {
    font-size: 1.4rem;
    color: #FBBC04;
    letter-spacing: 0.1rem;
}

.google-rating-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

.google-rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    line-height: 1.4;
}

.google-review-count {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Review Submission Form */
.review-form-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid var(--red);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-form-section h2 {
    text-align: center;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.review-form-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--yellow);
    transform: scale(1.2);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-submit-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

/* Video Controls Enhancement */
.ritual-video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
    cursor: pointer;
}

.video-card {
    position: relative;
}

.video-card::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover::after {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.video-unmute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #cc0000, #8b0000);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.video-unmute-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.7);
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.video-unmute-btn:active {
    transform: scale(0.95);
}

.video-unmute-btn svg {
    width: 24px;
    height: 24px;
}

.video-unmute-btn .unmuted-icon {
    display: none;
}

.video-unmute-btn.unmuted .muted-icon {
    display: none;
}

.video-unmute-btn.unmuted .unmuted-icon {
    display: block;
}

@media (max-width: 768px) {
    .video-unmute-btn {
        width: 42px;
        height: 42px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .video-unmute-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .voodoo-guarantee-section {
        padding: 3rem 1.5rem;
    }
    
    .ceremonial-title {
        font-size: 1.8rem;
    }
    
    .voodoo-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sigil-circle {
        width: 75px;
        height: 75px;
    }
    
    .voodoo-icon {
        width: 50px;
        height: 50px;
    }
    
    .sacred-seal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-form-section {
        padding: 2rem 1.5rem;
    }
    
    .google-rating-widget {
        padding: 1rem 1.2rem;
        max-width: 280px;
    }
    
    .google-logo {
        width: 24px;
        height: 24px;
    }
    
    .google-text {
        font-size: 0.9rem;
    }
    
    .google-stars {
        font-size: 1.2rem;
    }
    
    .google-rating-number {
        font-size: 1.5rem;
    }
    
    .google-rating-text {
        font-size: 0.7rem;
    }
    
    .star-rating label {
        font-size: 2.5rem;
    }
}