/* ============================================================
   YA AGBANTE — Professional Spiritual Services Website
   Dark Mystical Theme
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --tertiary-dark: #0f3460;
    --accent-coral: #e94560;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d060;
    --text-light: #e0e0e0;
    --text-muted: #a0a0b0;
    --text-white: #ffffff;
    --card-bg: rgba(22, 33, 62, 0.8);
    --card-border: rgba(212, 175, 55, 0.15);
    --overlay-dark: rgba(10, 10, 20, 0.7);
    --transition: all 0.3s ease;
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.1);
    --shadow-accent: 0 0 20px rgba(233, 69, 96, 0.15);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-light);
    background-color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent-gold-light);
}

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

::selection {
    background: var(--accent-coral);
    color: var(--text-white);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    text-align: center;
}
.preloader-symbol {
    font-size: 4rem;
    color: var(--accent-gold);
    animation: pulse 1.5s ease-in-out infinite;
}
.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 8px;
    margin-top: 1rem;
    animation: fadeInUp 1s ease forwards;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FLASH ALERTS
   ============================================================ */
.flash-alert {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 400px;
    max-width: 90%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#mainNav {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: blur(0px);
}
#mainNav.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    letter-spacing: 4px;
}

#mainNav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--accent-gold) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border-color: var(--accent-gold) !important;
    padding: 0.4rem 0.6rem;
}
.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='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 30, 0.85) 0%,
        rgba(15, 52, 96, 0.6) 50%,
        rgba(26, 26, 46, 0.85) 100%
    );
    z-index: 1;
}
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}
.hero-badge span {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: 3px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 12px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}
.hero-title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.hero-subtitle em {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-coral), #c0392b);
    color: var(--text-white) !important;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, #c0392b, var(--accent-coral));
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold) !important;
    border: 2px solid var(--accent-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-scroll-indicator span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    margin: -5px 0;
    animation: scrollDown 2s infinite;
}
.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section-padding {
    padding: 100px 0;
}
.section-dark {
    background: var(--secondary-dark);
}

.section-header {
    margin-bottom: 2rem;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-coral);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-coral), var(--accent-gold));
    border-radius: 3px;
    margin-top: 1rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}
.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}
.about-image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}

.about-experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-coral), #c0392b);
    padding: 18px 22px;
    border-radius: 12px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}
.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}
.exp-text {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-top: 4px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-coral), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: var(--transition);
}
.service-icon i {
    font-size: 1.6rem;
    color: var(--accent-coral);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
}
.service-card:hover .service-icon i {
    color: var(--text-white);
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card-highlight {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: var(--shadow-accent);
}

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.8);
}
.divider-content {
    position: relative;
    z-index: 2;
}
.divider-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}
.divider-content h3 {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}
.divider-content p {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

/* ============================================================
   FÉTICHES / DEITIES SECTION
   ============================================================ */
.fetiche-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.fetiche-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.fetiche-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.fetiche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fetiche-card:hover .fetiche-image img {
    transform: scale(1.1);
}
.fetiche-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.fetiche-card:hover .fetiche-overlay {
    opacity: 1;
}
.fetiche-overlay i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.fetiche-info {
    padding: 1.5rem;
}
.fetiche-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.fetiche-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-family: var(--font-accent);
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
    margin-bottom: 1rem;
}
.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-avatar i {
    font-size: 1.1rem;
    color: var(--accent-coral);
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 600;
}
.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   CONSULTATION SECTION
   ============================================================ */
.step-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0;
}
.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: var(--transition);
}
.step-indicator.active {
    opacity: 1;
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.15);
    border: 2px solid rgba(233, 69, 96, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-coral);
    transition: var(--transition);
}
.step-indicator.active .step-number {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}
.step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.step-connector {
    width: 80px;
    height: 2px;
    background: rgba(233, 69, 96, 0.2);
    margin: 0 15px;
    margin-bottom: 30px;
}

.consultation-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
}
.consultation-step-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.02);
}
.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}
.upload-placeholder i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.upload-placeholder p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}
.upload-placeholder span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.upload-preview {
    position: relative;
    display: inline-block;
}
.upload-preview img {
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.remove-preview {
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Controls (dark theme) */
.form-control-dark,
.form-control-dark:focus {
    background: rgba(15, 52, 96, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control-dark:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-control-dark::placeholder {
    color: rgba(160, 160, 176, 0.5);
}
.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

select.form-control-dark {
    appearance: auto;
}
select.form-control-dark option {
    background: var(--secondary-dark);
    color: var(--text-light);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}
.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}
.contact-info-card h4:first-child {
    margin-top: 0;
}
.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}
.contact-info-card a {
    color: var(--text-light);
}
.contact-info-card a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-coral) !important;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
    color: var(--text-white) !important;
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0d0d1a;
    padding: 60px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.footer-brand .brand-icon {
    font-size: 2rem;
}
.footer-brand .brand-text {
    font-size: 1.3rem;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.1);
    margin: 2.5rem 0 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    color: var(--accent-gold);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-coral);
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
}

/* ============================================================
   FLOATING PARTICLES (JS-generated)
   ============================================================ */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    .hero-title-sub {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-experience-badge {
        bottom: -10px;
        right: 10px;
    }
    .about-stats {
        gap: 1.5rem;
    }
    .divider-content h3 {
        font-size: 1.4rem;
    }
    .parallax-divider {
        background-attachment: scroll;
    }
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .hero-title-sub {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    .hero-badge span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-quote {
        font-size: 1rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .ms-3 {
        margin-left: 0 !important;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .step-indicators {
        flex-direction: column;
        gap: 10px;
    }
    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    .brand-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .hero-badge span {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 0.5px;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-quote {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    .hero-cta .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
    }
    .section-padding {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Services grid on small mobile */
    .service-card {
        padding: 1.2rem;
    }
    .service-card h4 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .service-icon {
        width: 55px;
        height: 55px;
    }
    .service-icon i {
        font-size: 1.1rem;
    }

    /* Fétiches on mobile */
    .fetiche-card .fetiche-info {
        padding: 1rem;
    }
    .fetiche-card .fetiche-info h4 {
        font-size: 1rem;
    }
    .fetiche-card .fetiche-info p {
        font-size: 0.8rem;
    }

    /* Testimonials on mobile */
    .testimonial-card {
        padding: 1.2rem;
    }
    .testimonial-card::before {
        font-size: 2.5rem;
        top: 8px;
        right: 12px;
    }
    .testimonial-text {
        font-size: 0.85rem;
    }
    .testimonial-author {
        flex-wrap: wrap;
    }
    .testimonial-author strong {
        font-size: 0.85rem;
    }
    .testimonial-author span {
        font-size: 0.75rem;
    }

    /* Consultation form on mobile */
    .consultation-card .card-body {
        padding: 1.2rem !important;
    }
    .consultation-step-icon {
        font-size: 2rem;
    }
    .consultation-card h4 {
        font-size: 1.1rem;
    }
    .step-indicators {
        gap: 6px;
    }
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    .step-label {
        font-size: 0.7rem;
    }
    .upload-zone {
        padding: 1.5rem 1rem;
    }
    .upload-zone .upload-placeholder i {
        font-size: 2rem;
    }
    .upload-zone .upload-placeholder p {
        font-size: 0.85rem;
    }

    /* Contact section on mobile */
    .contact-info-card {
        padding: 1.2rem;
    }
    .contact-info-card h4 {
        font-size: 1rem;
    }
    .contact-info-card p {
        font-size: 0.85rem;
    }
    .contact-form-card {
        padding: 1.2rem;
    }

    /* Form inputs full width on mobile */
    .form-control-dark,
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    /* About section mobile */
    .about-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    .about-text {
        font-size: 0.88rem;
    }
    .about-experience-badge {
        padding: 10px 14px;
    }
    .about-experience-badge .exp-number {
        font-size: 1.5rem;
    }

    /* Parallax divider mobile */
    .divider-content h3 {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    /* Footer mobile */
    .footer-brand .brand-text {
        font-size: 1rem;
    }
    .footer-about {
        font-size: 0.85rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-top: 1rem;
    }
    .footer-links li a {
        font-size: 0.85rem;
    }

    /* Picard modals on mobile */
    .picard-overlay {
        padding: 10px;
    }
    .picard-card {
        border-radius: 16px;
        max-width: 100%;
    }
    .picard-success-head,
    .picard-error-head {
        padding: 25px 15px 20px;
    }
    .picard-ring {
        width: 70px;
        height: 70px;
    }
    .picard-ring svg {
        width: 38px;
        height: 38px;
    }
    .picard-success-head h3,
    .picard-error-head h3 {
        font-size: 17px;
    }
    .picard-body {
        padding: 16px;
    }
    .picard-body p {
        font-size: 14px;
    }
    .picard-list li {
        font-size: 13px;
        padding: 8px 12px;
    }
    .picard-foot {
        padding: 0 16px 16px;
    }
    .picard-btn {
        font-size: 14px;
        padding: 12px 20px;
        min-width: 120px;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    .hero-title-sub {
        font-size: 0.85rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .brand-text {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    .navbar-brand .brand-icon {
        font-size: 1.2rem;
    }
    .service-card {
        padding: 1rem;
    }
    .testimonial-card {
        padding: 1rem;
    }
}
