/* 
 * ELGON LOVE SPELLS - PROFESSIONAL REDESIGN CSS
 * High Performance, SEO Optimized, & Fully Responsive
 */

/* 1. RESET & CORE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7b1113;
    --primary-dark: #5a0d0e;
    --secondary: #d4af37;
    --secondary-light: #f1d37c;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --light: #f8f8f8;
    --white: #ffffff;
    --text: #333333;
    --text-muted: #777777;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --edge-padding: 3%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* 2. LAYOUT UTILITIES */
.full-width-padding {
    width: 100%;
    padding-left: var(--edge-padding);
    padding-right: var(--edge-padding);
}

.full-width-section {
    width: 100%;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow-x: hidden;
}

.compact-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-dark { background-color: var(--dark); color: var(--white); }
.bg-light { background-color: var(--light); }
.text-gold { color: var(--secondary); }
.text-center { text-align: center; }

.loc-item {
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(212,175,55,0.2);
    display: block;
    color: var(--white);
    transition: var(--transition);
}

.loc-item:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* 3. HEADER & NAVIGATION */
.top-header-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.top-header-bar .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    margin-right: 20px;
    transition: var(--transition);
}

.top-contact a i {
    color: var(--secondary);
    margin-right: 5px;
}

.top-social a {
    margin-left: 15px;
    font-size: 0.9rem;
}

.top-contact a:hover, .top-social a:hover {
    color: var(--secondary-light);
}

.btn-call-now-top {
    padding: 6px 15px !important;
    font-size: 0.75rem !important;
    border-radius: 4px !important;
    background: var(--secondary) !important;
    color: var(--dark) !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    margin-left: 10px;
    vertical-align: middle;
}

.btn-call-now-top:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .btn-call-now-top {
        display: none !important;
    }
}

.main-header {
    background: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
}

.mobile-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-item:not(:last-child)::after {
    content: "";
    height: 15px;
    width: 1px;
    background: rgba(0,0,0,0.1);
    margin-left: 25px;
    display: inline-block;
}

.nav-link {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown Logic */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    padding: 15px 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-link:last-child { border-bottom: none; }

.dropdown-link:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 30px;
}

/* 4. HERO SECTION */
.hero-v2 {
    min-height: 80vh;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slider .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slider .hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 5;
}

.hero-body {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-cta {
    margin-top: 20px;
}

.hero-body h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--secondary);
    line-height: 1.1;
}

.hero-body p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    max-width: 800px;
    color: rgba(255,255,255,0.9);
}

/* 5. BUTTONS */
.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(123, 17, 19, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white) !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover, .btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-call-now {
    padding: 12px 25px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
    border-radius: 5px !important;
}

/* 6. CONTENT GRIDS */
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-header .header-container {
    max-width: 100%;
}

@media (max-width: 1300px) and (min-width: 993px) {
    .nav-menu {
        gap: 15px;
    }
    .nav-item:not(:last-child)::after {
        margin-left: 15px;
    }
    .nav-link {
        font-size: 0.7rem;
    }
    .logo img {
        height: 60px;
    }
    .mobile-site-name {
        font-size: 0.85rem !important;
    }
}

.cascading-gallery {
    display: flex;
    gap: 30px;
}

.cascading-gallery img {
    border-radius: 30px;
    box-shadow: var(--shadow);
    width: calc(50% - 15px);
    transition: var(--transition);
}

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

.cascading-gallery img:nth-child(2) {
    margin-top: 80px;
}

/* 7. SEO ELEMENTS */
.seo-ribbon-bar {
    background: var(--dark);
    color: var(--secondary);
    padding: 20px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--dark-light);
}

.seo-ribbon-bar a {
    color: var(--white);
    margin: 0 15px;
    border-bottom: 1px dashed var(--secondary);
}

/* 8. FORMS */
.contact-card-v2 {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    max-width: 1100px;
    margin: 0 auto;
}

.form-group-v2 {
    margin-bottom: 25px;
}

.form-group-v2 input, .form-group-v2 textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-v2 input:focus, .form-group-v2 textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 15px rgba(123, 17, 19, 0.1);
}

/* 9. FLOATING WIDGETS */
.floating-contact-v2 {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.float-home { background: var(--dark); }
.float-wa { background: #25d366; }
.float-phone { background: var(--primary); }

/* 10. ACCESSIBILITY */
.accessibility-v2 {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.access-trigger {
    background: var(--dark);
    color: var(--secondary);
    border: none;
    padding: 15px;
    border-radius: 15px 0 0 15px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.accessibility-menu {
    position: absolute;
    right: 50px;
    top: 0;
    width: 200px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: none;
}

body.high-contrast {
    filter: contrast(1.5) grayscale(0.5);
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast .full-width-section, body.high-contrast .mega-footer {
    background-color: #000 !important;
    color: #fff !important;
}

/* 11. FOOTER */
.mega-footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-title {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbbbbb;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.footer-2-col {
    display: block;
}

.footer-2-col li {
    margin-bottom: 15px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-light);
    display: block;
    width: 100%;
}

.back-to-top {
    color: var(--secondary) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* 12. MOBILE RESPONSIVE */
@media (max-width: 1200px) {
    .hero-body h1 { font-size: 3rem; }
    .content-grid-2 { gap: 40px; }
}

@media (max-width: 992px) {
    .top-header-bar { font-size: 0.75rem; }
    .top-email, .top-social { display: none; }
    .top-contact { display: flex; justify-content: center; width: 100%; gap: 15px; align-items: center; }
    .top-contact a { margin-right: 0; }
    .top-social-mobile { display: flex !important; gap: 10px; margin-left: 5px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 10px; }
    .top-social-mobile a { font-size: 1rem; color: var(--secondary-light); }

    .logo img { height: 50px; }
    .main-header { height: 80px; }

    .nav-menu { 
        display: none; 
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 9999 !important;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .nav-item {
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        display: block !important;
    }

    .nav-item:nth-child(even) {
        border-right: none;
    }

    .nav-item::after {
        display: none !important;
    }
    
    .nav-item.mobile-social-links {
        grid-column: span 2;
        border-bottom: none;
        border-right: none;
        padding: 10px 5% !important;
        margin-top: 0 !important;
    }

    .nav-link {
        display: block;
        padding: 8px 10px;
        font-size: 0.75rem;
        border-bottom: none;
        text-align: center;
        width: 100%;
        font-weight: 600;
    }

    .dropdown-link {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .dropdown-content {
        grid-column: span 2;
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        width: 100%;
        text-align: left;
    }

    .dropdown-content.show {
        display: block;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-wrap: nowrap;
    }

    .mobile-toggle { 
        display: flex !important; 
        align-items: center;
        justify-content: center;
        font-size: 28px;
        cursor: pointer;
        color: var(--primary);
        z-index: 10001;
        width: 45px;
        height: 45px;
        position: relative;
        flex-shrink: 0;
    }
    
    .header-actions { display: none; }
    .content-grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-body { text-align: center; margin: 0 auto; }
    .hero-body p { margin: 0 auto 40px; }
    .hero-overlay { background: rgba(0,0,0,0.7); }
    
    /* Breathing space on mobile */
    .full-width-padding {
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .full-width-section {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .footer-2-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
    }
    
    .footer-2-col li {
        margin-bottom: 5px !important;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .disclaimer-area {
        text-align: center !important;
        border-left: none !important;
        border-top: 4px solid var(--secondary) !important;
    }

    .nav-menu.active .mobile-social-links { 
        display: block !important; 
    }
}

@media (max-width: 768px) {
    .full-width-padding {
        padding-left: 4%;
        padding-right: 4%;
    }
    .full-width-section { 
        padding-top: 40px; 
        padding-bottom: 40px; 
        padding-left: 4%;
        padding-right: 4%;
    }
    .hero-body h1 { font-size: 2.2rem; }
    .hero-body p { font-size: 1.1rem; }
    .footer-grid-4 { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .hero-cta { display: flex; flex-direction: column; gap: 15px; }
    .btn-whatsapp { margin-left: 0; }
    .contact-card-v2 { padding: 25px; border-radius: 20px; }
    .floating-contact-v2 { bottom: 20px; left: 20px; gap: 10px; }
    .float-icon { width: 55px; height: 55px; font-size: 24px; }
    .cascading-gallery { flex-direction: column; }
    .cascading-gallery img { width: 100%; margin-top: 0 !important; }
    
    /* Fix form layouts on small mobile */
    .footer-contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .footer-logo-left {
        text-align: center !important;
    }
    
    .footer-logo-left img {
        margin: 0 auto;
    }
}

/* 13. ACCESSIBILITY V3 & DARK MODE */
.accessibility-v3 {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 10000;
}

.access-trigger-v3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.access-trigger-v3:hover {
    transform: scale(1.1);
}

.accessibility-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.accessibility-panel.active {
    display: flex;
}

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

.access-header {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.access-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: inherit;
}

#close-access {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
}

.access-content {
    padding: 20px;
    color: var(--text);
}

.access-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.access-item:last-child {
    margin-bottom: 0;
}

.access-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Switches */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.btn-group-v3 {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.btn-group-v3 button {
    padding: 5px 12px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    border-right: 1px solid #ddd;
}

.btn-group-v3 button:last-child {
    border-right: none;
}

.btn-group-v3 button:hover {
    background: #eee;
}

.access-btn-full {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.access-btn-full:hover {
    background: var(--secondary);
    color: white;
}

/* Dark Mode Classes */
body.dark-mode-active {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

.dark-mode-active .main-header, 
.dark-mode-active .top-header-bar,
.dark-mode-active .nav-menu,
.dark-mode-active .dropdown-content {
    background-color: #1a1a1a !important;
    border-color: #333 !important;
}

.dark-mode-active section:not(.bg-dark),
.dark-mode-active .bg-light,
.dark-mode-active .contact-card-v2 {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

.dark-mode-active p, .dark-mode-active .nav-link, .dark-mode-active h2, .dark-mode-active h3 {
    color: #e0e0e0 !important;
}

.dark-mode-active .form-group-v2 input, .dark-mode-active .form-group-v2 textarea {
    background: #252525 !important;
    border-color: #444 !important;
    color: white !important;
}

.dyslexic-font {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}

@media (max-width: 480px) {
    .accessibility-v3 {
        right: 15px;
        bottom: 100px;
    }
    
    .accessibility-panel {
        width: 280px;
        right: 0;
    }
    
    .access-trigger-v3 {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-contact-v2 {
        bottom: 20px;
        left: 15px;
        gap: 8px;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
.content-carousel .slick-prev:before, .content-carousel .slick-next:before {
    color: var(--secondary);
    font-size: 30px;
}

.content-carousel .slick-dots li button:before {
    color: var(--white);
    opacity: 0.5;
}

.content-carousel .slick-dots li.slick-active button:before {
    color: var(--secondary);
    opacity: 1;
}

.carousel-item-v3 > div {
    transition: var(--transition);
}

.carousel-item-v3 > div:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-10px);
}

.float-mail { background: #ea4335; }

.fab.fa-x-twitter {
    font-weight: 400 !important;
}

/* 9. PARALLAX SECTIONS */
.parallax-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 5%;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.parallax-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75));
    z-index: 1;
}

.parallax-section .content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
}

.parallax-section h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.parallax-section p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .parallax-section {
        padding: 80px 20px;
        background-attachment: scroll; /* Better for mobile performance */
    }
    .parallax-section h2 {
        font-size: 2.2rem;
    }
    .parallax-section p {
        font-size: 1.15rem;
    }
}

/* SEO & Refactoring - Remove Inline Styles */
.top-social-mobile-v2 {
    display: none;
}
@media (max-width: 991px) {
    .top-social-mobile-v2 {
        display: flex;
        gap: 8px;
        font-size: 0.8rem;
        margin-left: 5px;
    }
    .top-social-mobile-v2 a {
        color: var(--white);
    }
    .top-wa-header {
        display: none !important;
    }
    .footer-bottom-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }
    .footer-logo-v2 {
        margin: 0 auto;
    }
    .disclaimer-area-v2 {
        text-align: center;
        border-left: none !important;
        border-top: 4px solid var(--secondary);
    }
    .mobile-social-links-v2 {
        display: block !important;
    }
}
.parallax-overlay {
    background-color: #111; /* Fallback for white text */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.logo-link {
    display: flex;
    align-items: center;
}
.mobile-site-name-v2 {
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-left: 10px;
}
.nav-icon-down {
    font-size: 0.7rem;
}
.mobile-social-links-v2 {
    display: none;
    padding: 20px 5%;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
.mobile-social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    align-items: center;
}
.social-fb { color: #3b5998; }
.social-x { 
    color: #ffffff; 
    background: #000; 
    display: inline-flex; 
    width: 30px; 
    height: 30px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 4px; 
    font-size: 1rem; 
}
.social-li { color: #0077b5; }
.social-pi { color: #bd081c; }

/* Index Page Refactoring */
.section-padding-v3 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.video-container-v3 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.play-icon-v3 {
    font-size: 5rem;
    color: var(--secondary);
    cursor: pointer;
    opacity: 0.8;
}
.welcome-title-v3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.carousel-padding-v3 {
    padding-top: 60px;
    padding-bottom: 80px;
}
.carousel-item-wrap-v3 {
    padding: 0 15px;
}
.carousel-card-v3 {
    background: rgba(255,255,255,0.05);
    padding: 0;
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.2);
    height: 100%;
    overflow: hidden;
}
.carousel-img-v3 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.carousel-content-v3 {
    padding: 25px;
}
.carousel-title-v3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.carousel-text-v3 {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}
.carousel-link-v3 {
    font-weight: 700;
    font-size: 0.8rem;
}

.shrine-img-v3 {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
}
.margin-bottom-50 {
    margin-bottom: 50px;
}
.tip-img-v3 {
    border-radius: 10px;
    margin-bottom: 15px;
}
.tip-link-v3 {
    font-size: 0.8rem;
    font-weight: 700;
}
.trust-icon-v3 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.card-v3-inner {
    background: rgba(255,255,255,0.05);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.card-v3-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}
.card-v3-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.card-v3-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.testimonial-card-v3 {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
.testimonial-text-v3 {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}
.testimonial-author-v3 {
    margin-top: 20px;
    font-weight: 700;
}
.success-msg-v3 {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #c3e6cb;
}
.error-msg-v3 {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

/* Footer Page Refactoring */
.footer-top-brand-v2 {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 30px;
}
.footer-brand-text-v2 {
    max-width: 900px;
    margin: 0 auto;
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}
.footer-descriptions-v2 {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    padding-bottom: 30px;
}
.footer-col-text-v2 {
    font-size: 0.85rem;
    color: #ccc;
}
.footer-links-v2 {
    font-size: 0.75rem;
}
.footer-grid-4-v2 {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
.footer-contact-links-v2 {
    font-size: 0.85rem;
}
.footer-accept-title-v2 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.accept-icons-v2 {
    font-size: 1.5rem;
    color: #ccc;
}
.social-icons-v2 {
    font-size: 1.5rem;
}
.footer-input-v2 {
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #444;
    color: #fff;
}
.footer-form-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-bottom-grid-v2 {
    display: grid; 
    grid-template-columns: 1fr 3.5fr; 
    gap: 40px; 
    align-items: center; 
    margin-bottom: 30px;
}
.footer-logo-left-v2 {
    text-align: center;
}
.footer-logo-v2 {
    max-width: 220px;
}
.disclaimer-area-v2 {
    padding: 20px; 
    background: rgba(0,0,0,0.3); 
    border-left: 4px solid var(--secondary); 
    font-size: 0.75rem; 
    color: #aaa; 
    line-height: 1.5; 
    text-align: left;
}
.footer-bottom-meta-v2 {
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 20px; 
    text-align: center;
}
.footer-copy-v2 {
    margin-bottom: 15px;
}
.footer-copy-text-v2 {
    font-size: 0.85rem; 
    color: #888;
}
.footer-extra-links-v2 {
    margin-bottom: 25px;
}
.footer-extra-link-v2 {
    margin-right: 20px; 
    color: #888; 
    font-size: 0.85rem;
}
.back-to-top-v2 {
    padding: 15px 20px; 
    border-radius: 50%; 
    font-size: 1.2rem; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 50px; 
    height: 50px;
}

.sacred-fire-v3 {
    height: 80px; 
    margin: 0 auto 20px; 
    display: block;
}
.btn-secondary-v3 {
    background: var(--secondary); 
    color: var(--white); 
    padding: 15px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: 600;
}
.card-v2-alt {
    background: rgba(255,255,255,0.05); 
    padding: 35px; 
    border-radius: 25px; 
    border: 1px solid rgba(212,175,55,0.2); 
    backdrop-filter: blur(5px);
}
.card-v2-text {
    color: rgba(255,255,255,0.9);
}
.margin-top-20 { margin-top: 20px; }
.margin-top-30 { margin-top: 30px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-40 { margin-bottom: 40px; }
.margin-auto-max-1000 { max-width: 1000px; margin: 0 auto; }
.font-size-1-2 { font-size: 1.2rem; }
.form-submit-v2 { 
    width: 100%; 
    max-width: 400px; 
    border: none; 
    cursor: pointer; 
}
.parallax-section-v3 {
    padding: 100px 4% !important;
}
.padding-y-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.weight-700 { font-weight: 700; }
.margin-top-25 { margin-top: 25px; }
.margin-bottom-15 { margin-bottom: 15px; }
.margin-right-15 { margin-right: 15px; }
.grid-col-span-2 { grid-column: span 2; }
.footer-submit-btn { 
    width: 100%; 
    padding: 12px; 
    border: none; 
    cursor: pointer; 
    font-weight: 700; 
}
.access-reset-btn { 
    background: #f44336; 
    color: white; 
    border: none; 
}
