/* ===== FAST SCROLL REVEAL ANIMATIONS ===== */
        [data-reveal] {
            opacity: 0;
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
        }

        /* Different reveal directions */
        [data-reveal="fade-up"] {
            transform: translateY(40px);
        }

        [data-reveal="fade-down"] {
            transform: translateY(-40px);
        }

        [data-reveal="fade-left"] {
            transform: translateX(-40px);
        }

        [data-reveal="fade-right"] {
            transform: translateX(40px);
        }

        [data-reveal="fade-scale"] {
            transform: scale(0.95);
        }

        [data-reveal="fade-rotate"] {
            transform: rotate(3deg) scale(0.97);
        }

        [data-reveal="zoom-in"] {
            transform: scale(0.7);
        }

        /* Active state when scrolled into view */
        [data-reveal].revealed {
            opacity: 1;
            transform: translate(0) scale(1) rotate(0);
        }

        /* Your existing CSS continues below */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            overflow-x: hidden;
            min-height: 100vh;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Light Theme */
        body.light-theme {
            background-color: #ffffff;
        }

        body.light-theme .content-section {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
        }

        body.light-theme .content-section p,
        body.light-theme .contact-message,
        body.light-theme .question-text,
        body.light-theme .contact-orb h3,
        body.light-theme .section-title .title-text {
            color: #2c3e50;
        }

        body.light-theme .orb-link {
            color: #3498db;
            background: rgba(52, 152, 219, 0.1);
            border-color: rgba(52, 152, 219, 0.2);
        }

        body.light-theme .orb-badge {
            color: #27ae60;
            background: rgba(46, 204, 113, 0.1);
            border-color: rgba(46, 204, 113, 0.2);
        }

        /* Dark Theme */
        body.dark-theme {
            background: linear-gradient(135deg, #0a1928 0%, #1a2f3f 50%, #0d2b3e 100%);
        }

        body.dark-theme .content-section {
            background: transparent;
        }

        body.dark-theme .content-section p,
        body.dark-theme .contact-message,
        body.dark-theme .question-text,
        body.dark-theme .contact-orb h3,
        body.dark-theme .section-title .title-text {
            color: rgba(255, 255, 255, 0.95);
        }

        body.dark-theme .contact-message::before,
        body.dark-theme .contact-message::after {
            color: #4ec0e9;
            opacity: 0.3;
        }

        body.dark-theme .orb-email {
            background: linear-gradient(145deg, rgba(52, 152, 219, 0.2), rgba(155, 89, 182, 0.2));
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .orb-whatsapp {
            background: linear-gradient(145deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .orb-link {
            color: #4ec0e9;
            background: rgba(78, 192, 233, 0.15);
            border-color: rgba(255, 255, 255, 0.15);
        }

        body.dark-theme .orb-link:hover {
            background: #3498db;
            color: white;
        }

        body.dark-theme .orb-badge {
            color: #2ecc71;
            background: rgba(46, 204, 113, 0.15);
            border-color: rgba(255, 255, 255, 0.15);
        }

        body.dark-theme .orb-stats {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .stat-label {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Theme Toggle Button */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db, #9b59b6);
            border: none;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5);
        }

        .theme-toggle i {
            font-size: 1.8rem;
            color: white;
            position: absolute;
            transition: all 0.3s ease;
        }

        .theme-toggle .fa-sun {
            opacity: 0;
            transform: rotate(180deg) scale(0);
        }

        .theme-toggle .fa-moon {
            opacity: 1;
            transform: rotate(0) scale(1);
        }

        body.dark-theme .theme-toggle .fa-sun {
            opacity: 1;
            transform: rotate(0) scale(1);
        }

        body.dark-theme .theme-toggle .fa-moon {
            opacity: 0;
            transform: rotate(180deg) scale(0);
        }

        /* HEADER STYLES */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.8s ease-out 1.5s forwards;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            padding: 15px 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            height: 80px;
            width: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: rotate(10deg) scale(1.05);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .logo-text h1 {
            margin: 0;
            font-size: 24px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .logo-text .anchor_scripture {
            margin: 5px 0 0 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
        }

        .navigation {
            display: flex;
            gap: 20px;
        }

        .navigation a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navigation a:hover {
            color: #fff;
            background: rgba(52, 152, 219, 0.7);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navigation a:hover::after {
            width: 80%;
        }

        .hamburger-btn {
            display: none;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            width: 50px;
            height: 50px;
            position: relative;
            z-index: 1000;
            padding: 10px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .hamburger-btn:hover {
            background: rgba(52, 152, 219, 0.7);
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .hamburger-line {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px auto;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }

        .hamburger-btn.active .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
            background: white;
        }

        .hamburger-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger-btn.active .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
            background: white;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: right 0.2s cubic-bezier(0.77, 0, 0.175, 1);
            overflow: hidden;
        }

        .mobile-menu-overlay.active {
            right: 0;
        }

        .mobile-menu-content {
            text-align: center;
            padding: 40px;
            width: 100%;
            max-width: 500px;
            transform: translateX(100px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.3s;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 50px;
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 28px;
            font-weight: 700;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .mobile-nav a::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.6s ease;
        }

        .mobile-nav a:hover::before {
            left: 100%;
        }

        .mobile-nav a:hover {
            color: #00d4ff;
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .mobile-nav a i {
            margin-right: 15px;
            font-size: 24px;
        }

        .mobile-menu-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .mobile-menu-footer p {
            margin: 10px 0;
            font-size: 16px;
        }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1200px;
            padding: 0 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.5s forwards;
            margin-top: 100px;
        }

        .company-name {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            color: white;
            text-shadow: 0 5px 25px rgba(0,0,0,0.7);
            background: linear-gradient(to right, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            color: white;
            text-shadow: 0 2px 15px rgba(0,0,0,0.6);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .cta-button::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;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .loading-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            color: white;
            font-size: 1.5rem;
            background: rgba(0,0,0,0.7);
            padding: 20px 40px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .loading-indicator i {
            margin-right: 10px;
        }

        /* DECORATIVE BACKGROUND ELEMENTS */
        /*.hero-floating-dots,
        .section-floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.15) 2px, transparent 2px),
                radial-gradient(circle at 90% 70%, rgba(155, 89, 182, 0.15) 3px, transparent 3px),
                radial-gradient(circle at 30% 80%, rgba(46, 204, 113, 0.15) 2px, transparent 2px),
                radial-gradient(circle at 70% 30%, rgba(241, 196, 15, 0.15) 4px, transparent 4px);
            background-size: 100px 100px;
            pointer-events: none;
            animation: dots-move 60s linear infinite;
            z-index: 1;
        }

        .hero-floating-lines,
        .section-floating-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(45deg, 
                    transparent 0px, 
                    transparent 20px,
                    rgba(52, 152, 219, 0.08) 20px,
                    rgba(52, 152, 219, 0.08) 40px);
            pointer-events: none;
            z-index: 1;
        } */

        @keyframes dots-move {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        /* Ensure content stays above decorative elements */
        .hero-content,
        .content-section > *:not(.hero-floating-dots):not(.hero-floating-lines):not(.section-floating-dots):not(.section-floating-lines) {
            position: relative;
            z-index: 2;
        }

        .content-section {
            padding: 100px 30px;
            text-align: center;
            position: relative;
            z-index: 2;
            transition: background 0.3s ease;
            overflow: hidden;
        }

        .content-section p {
            max-width: 900px;
            margin: 0 auto 50px;
            font-size: 1.3rem;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            cursor: pointer;
            z-index: 2;
        }

        .title-text {
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .section-title:hover .title-text {
            transform: scale(1.08);
            text-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
        }

        .title-underline {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2980b9);
            border-radius: 2px;
            transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                        background 0.3s ease;
            transform-origin: center;
        }

        .section-title:hover .title-underline {
            width: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(to right, #2980b9, #3498db, #9b59b6);
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
        }

        .question-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 10px auto 30px;
            max-width: 900px;
            padding: 0;
            position: relative;
            z-index: 2;
        }

        .question-wrapper {
            flex: 1;
            position: relative;
        }

        .question-text {
            font-size: 1.8rem;
            font-weight: 400;
            margin: 0;
            line-height: 1.5;
            letter-spacing: -0.01em;
            font-family: 'Georgia', 'Times New Roman', serif;
            font-style: italic;
            transition: all 0.3s ease;
            text-align: left;
        }

        .question-container:hover .question-text {
            transform: translateX(5px);
        }

        .whatsapp-connection {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            z-index: 2;
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 2px solid #25D366;
            opacity: 0;
            animation: pulse-ring 3s infinite;
        }

        .ring-1 {
            width: 100px;
            height: 100px;
            animation-delay: 0s;
        }

        .ring-2 {
            width: 150px;
            height: 150px;
            animation-delay: 0.5s;
        }

        .ring-3 {
            width: 200px;
            height: 200px;
            animation-delay: 1s;
        }

        @keyframes pulse-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        .whatsapp-button {
            position: relative;
            display: block;
            text-decoration: none;
            border-radius: 60px;
            overflow: hidden;
            z-index: 20;
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .button-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            z-index: 2;
        }

        .button-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 3;
            animation: particle-float 2s infinite;
        }

        .p1 { top: 20%; left: 10%; animation-delay: 0s; }
        .p2 { top: 60%; left: 80%; animation-delay: 0.5s; }
        .p3 { top: 80%; left: 30%; animation-delay: 1s; }
        .p4 { top: 30%; left: 90%; animation-delay: 1.5s; }

        @keyframes particle-float {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(20px, -20px) scale(1.5); opacity: 0.6; }
        }

        .button-icon-wrapper {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .button-icon {
            font-size: 2.5rem;
            color: white;
            position: relative;
            z-index: 2;
            animation: icon-pulse 2s infinite;
        }

        @keyframes icon-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .icon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.8), transparent);
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            animation: icon-glow 2s infinite;
        }

        @keyframes icon-glow {
            0%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
            50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
        }

        .button-text-wrapper {
            flex: 1;
            text-align: left;
            margin-left: 20px;
        }

        .button-main-text {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
        }

        .button-sub-text {
            display: block;
            font-size: 0.9rem;
            opacity: 0.8;
            color: white;
        }

        .button-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .button-arrow i {
            font-size: 1.5rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .whatsapp-button:hover .button-arrow {
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(360deg);
        }

        .whatsapp-button:hover .button-arrow i {
            transform: translateX(5px);
        }

        .button-hover-layer {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .whatsapp-button:hover .button-hover-layer {
            opacity: 1;
        }

        .whatsapp-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(37, 211, 102, 0.4);
        }

        .connection-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            padding: 20px 40px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 15;
            position: relative;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #25D366;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-message {
            font-size: 1.3rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 40px auto;
            padding: 20px 40px;
            position: relative;
            font-style: italic;
            text-align: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .contact-message::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 0;
            font-size: 6rem;
            color: #3498db;
            opacity: 0.2;
            font-family: Georgia, serif;
            transition: all 0.3s ease;
        }

        .contact-message::after {
            content: '"';
            position: absolute;
            bottom: -40px;
            right: 0;
            font-size: 6rem;
            color: #3498db;
            opacity: 0.2;
            font-family: Georgia, serif;
            transform: rotate(180deg);
            transition: all 0.3s ease;
        }

        .contact-message:hover::before {
            color: #9b59b6;
            opacity: 0.3;
            transform: scale(1.1) translateX(-5px);
        }

        .contact-message:hover::after {
            color: #9b59b6;
            opacity: 0.3;
            transform: rotate(180deg) scale(1.1) translateX(5px);
        }

        /* Contact Floating Elements Container */
        .contact-floating-elements {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 40px auto;
            max-width: 1400px;
            position: relative;
            z-index: 20;
            flex-wrap: wrap;
        }

        /* Contact Orb Base Styles */
        .contact-orb {
            position: relative;
            width: 320px;
            min-height: 380px;
            border-radius: 35px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px 20px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            overflow: hidden;
            backdrop-filter: blur(10px);
            animation: float 6s ease-in-out infinite;
            z-index: 2;
        }

        .contact-orb .orb-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 5;
        }

        .contact-orb .orb-icon i {
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s ease;
        }

        .contact-orb h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .orb-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .orb-link {
            text-decoration: none;
            font-size: 1rem;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
            word-break: break-all;
            display: inline-block;
            width: fit-content;
            margin: 0 auto;
        }

        .orb-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
        }

        .orb-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .orb-badge i {
            margin-right: 8px;
        }

        .orb-stats {
            display: flex;
            justify-content: center;
            margin: 20px 0 25px;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #25D366;
        }

        .stat-label {
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .channel-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 12px 30px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 60px;
            text-decoration: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            margin-top: 5px;
        }

        .channel-btn i {
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .channel-btn i:last-child {
            font-size: 1rem;
            opacity: 0.7;
        }

        .channel-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 35px rgba(37, 211, 102, 0.4);
            background: linear-gradient(135deg, #128C7E, #25D366);
        }

        .channel-btn:hover i:first-child {
            transform: rotate(10deg) scale(1.1);
        }

        .channel-btn:hover i:last-child {
            transform: translateX(5px);
            opacity: 1;
        }

        .orb-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.3), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            border-radius: 40px;
        }

        .contact-orb:hover .orb-glow {
            opacity: 1;
        }

        .contact-orb:hover .orb-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .orb-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            opacity: 0.2;
            animation: particle-drift 8s infinite linear;
        }

        @keyframes particle-drift {
            0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.2; }
            25% { transform: translate(30px, -30px) rotate(90deg) scale(1.2); opacity: 0.4; }
            50% { transform: translate(60px, 0) rotate(180deg) scale(1); opacity: 0.2; }
            75% { transform: translate(30px, 30px) rotate(270deg) scale(0.8); opacity: 0.3; }
            100% { transform: translate(0, 0) rotate(360deg) scale(1); opacity: 0.2; }
        }

        /* Email Orb */
        .orb-email {
            background: linear-gradient(145deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
            border: 1px solid rgba(52, 152, 219, 0.2);
            animation-delay: 0s;
        }

        .orb-email .orb-icon {
            background: linear-gradient(135deg, #3498db, #9b59b6);
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
        }

        .ep1 { top: 10%; right: 10%; animation-delay: 0s; background: #3498db; }
        .ep2 { bottom: 20%; left: 5%; animation-delay: 2s; background: #9b59b6; }
        .ep3 { top: 30%; left: 15%; animation-delay: 4s; background: #2ecc71; }

        /* WhatsApp Orb */
        .orb-whatsapp {
            background: linear-gradient(145deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
            border: 1px solid rgba(37, 211, 102, 0.2);
            animation-delay: 0.2s;
        }

        .orb-whatsapp .orb-icon {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .wp1 { top: 15%; right: 15%; animation-delay: 1s; background: #25D366; }
        .wp2 { bottom: 25%; right: 20%; animation-delay: 3s; background: #128C7E; }
        .wp3 { top: 40%; left: 10%; animation-delay: 5s; background: #3498db; }

        /* Instagram Orb - Brand Colors */
        .orb-instagram {
            background: linear-gradient(145deg, rgba(225, 48, 108, 0.1), rgba(193, 53, 132, 0.1));
            border: 1px solid rgba(225, 48, 108, 0.2);
            animation-delay: 0.4s;
        }

        .orb-instagram .orb-icon {
            background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
            box-shadow: 0 10px 30px rgba(193, 53, 132, 0.3);
        }

        .instagram-link {
            color: #e1306c !important;
            background: rgba(225, 48, 108, 0.1) !important;
            border: 1px solid rgba(225, 48, 108, 0.2) !important;
        }

        .instagram-badge {
            background: rgba(225, 48, 108, 0.1) !important;
            color: #e1306c !important;
            border: 1px solid rgba(225, 48, 108, 0.2) !important;
        }

        .instagram-link:hover {
            background: #e1306c !important;
            color: white !important;
        }

        .ip1 { top: 8%; left: 8%; animation-delay: 0.5s; background: #fdf497; }
        .ip2 { bottom: 20%; right: 10%; animation-delay: 2s; background: #fd5949; }
        .ip3 { top: 35%; right: 12%; animation-delay: 3.5s; background: #d6249f; }
        .ip4 { bottom: 12%; left: 12%; animation-delay: 5s; background: #285AEB; }

        /* Dark theme support for Instagram */
        body.dark-theme .orb-instagram {
            background: linear-gradient(145deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.2));
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .instagram-link {
            color: #ff6b9d !important;
            background: rgba(225, 48, 108, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.15) !important;
        }

        body.dark-theme .instagram-badge {
            color: #ff6b9d !important;
            background: rgba(225, 48, 108, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.15) !important;
        }

        @keyframes dots-move {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        .contact-orb:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: transparent;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(255, 255, 255, 0.5);
        }

        @keyframes fadeInDown {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .company-name { font-size: 4rem; }
            .tagline { font-size: 1.6rem; }
            .contact-floating-elements { gap: 20px; }
            .contact-orb { width: 300px; padding: 25px 15px; }
        }

        @media (max-width: 992px) {
            .navigation { display: none; }
            .hamburger-btn { display: block; }
            .logo-text h1 { font-size: 20px; }
            .logo-image { width: 60px; height: 60px; }
            .company-name { font-size: 3.5rem; }
            .tagline { font-size: 1.4rem; }
            .cta-button { padding: 16px 35px; font-size: 1.2rem; }
            .contact-floating-elements { gap: 30px; }
            .contact-orb { width: 340px; min-height: 380px; padding: 30px 25px; }
            .contact-orb .orb-icon { width: 90px; height: 90px; }
            .contact-orb .orb-icon i { font-size: 2.8rem; }
            .contact-orb h3 { font-size: 1.7rem; }
        }

        @media (max-width: 768px) {
            .header { padding: 15px 20px; }
            .company-name { font-size: 2.8rem; }
            .tagline { font-size: 1.2rem; }
            .content-section { padding: 80px 20px; }
            .content-section p { font-size: 1.2rem; }
            .section-title { font-size: 2.5rem; }
            .contact-message { font-size: 1.2rem; padding: 15px 30px; }
            .contact-message::before,
            .contact-message::after { font-size: 4.5rem; }
            .contact-message::after { bottom: -30px; }
            .contact-floating-elements { flex-direction: column; gap: 40px; }
            .contact-orb { width: 100%; max-width: 380px; min-height: 400px; padding: 35px 25px; }
            .contact-orb .orb-icon { width: 100px; height: 100px; }
            .contact-orb .orb-icon i { font-size: 3rem; }
            .contact-orb h3 { font-size: 1.8rem; }
            .button-main-text { font-size: 1.2rem; }
            .button-sub-text { font-size: 0.8rem; }
        }

        @media (max-width: 576px) {
            .logo-text h1 { font-size: 18px; }
            .logo-image { width: 50px; height: 50px; }
            .mobile-nav a { font-size: 24px; padding: 15px; }
            .company-name { font-size: 2.2rem; }
            .tagline { font-size: 1rem; padding: 0 15px; }
            .cta-button { padding: 14px 30px; font-size: 1.1rem; }
            .hero-content { margin-top: 80px; }
            .content-section { padding: 60px 15px; }
            .section-title { font-size: 2rem; }
            .question-text { font-size: 1.4rem; }
            .contact-message { font-size: 1.1rem; padding: 10px 25px; }
            .contact-message::before,
            .contact-message::after { font-size: 3.5rem; }
            .contact-message::before { top: -15px; }
            .contact-message::after { bottom: -25px; }
            .contact-orb { padding: 25px 20px; min-height: 350px; }
            .contact-orb h3 { font-size: 1.5rem; }
            .orb-link { font-size: 0.9rem; padding: 8px 15px; }
            .stat-value { font-size: 1.4rem; }
            .channel-btn { padding: 10px 20px; font-size: 0.9rem; }
        }

        @media (max-width: 400px) {
            .header { padding: 10px 15px; }
            .logo-image { width: 45px; height: 45px; }
            .logo-text h1 { font-size: 16px; }
            .anchor_scripture { font-size: 12px !important; }
            .company-name { font-size: 1.8rem; }
            .tagline { font-size: 0.9rem; }
            .hero-content { margin-top: 70px; }
        }

        @media (min-width: 1600px) {
            .company-name { font-size: 6rem; }
            .tagline { font-size: 2.2rem; }
            .cta-button { padding: 22px 55px; font-size: 1.5rem; }
        }

        /* CLOSING SECTION - Dropbox Style Unfolding Animation */
        .closing-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #0a1928 0%, #1a2f3f 50%, #0d2b3e 100%);
            color: white;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Unfolding Background Layers */
        .closing-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform-origin: top center;
            animation: unfoldLayer 1.5s ease-out forwards;
            opacity: 0;
        }

        .layer-1 {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
            animation-delay: 0.2s;
        }

        .layer-2 {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
            animation-delay: 0.4s;
        }

        .layer-3 {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(46, 204, 113, 0.1));
            animation-delay: 0.6s;
        }

        @keyframes unfoldLayer {
            0% {
                transform: scaleY(0);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        /* Floating Particles */
        .closing-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .closing-particles .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 20s linear infinite;
        }

        .closing-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 15s; }
        .closing-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-duration: 18s; }
        .closing-particles .particle:nth-child(3) { top: 80%; left: 30%; animation-duration: 12s; }
        .closing-particles .particle:nth-child(4) { top: 40%; left: 70%; animation-duration: 20s; }
        .closing-particles .particle:nth-child(5) { top: 90%; left: 50%; animation-duration: 16s; }
        .closing-particles .particle:nth-child(6) { top: 30%; left: 40%; animation-duration: 14s; }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) translateX(15px) rotate(90deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(0) translateX(30px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(30px) translateX(15px) rotate(270deg);
                opacity: 0.6;
            }
            100% {
                transform: translateY(0) translateX(0) rotate(360deg);
                opacity: 0.3;
            }
        }

        /* Main Content */
        .closing-content {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 50px;
            display: flex;
            align-items: center;
            gap: 60px;
            min-height: 100vh;
            animation: contentAppear 1s ease-out 0.8s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes contentAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Left Side - Visual Elements */
        .closing-visual {
            flex: 1;
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .floating-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: iconFloat 6s ease-in-out infinite;
        }

        .floating-icon i {
            font-size: 2.5rem;
            color: white;
            opacity: 0.9;
        }

        .floating-icon.cross {
            top: 20%;
            left: 20%;
            animation-delay: 0s;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), rgba(155, 89, 182, 0.3));
        }

        .floating-icon.bible {
            top: 50%;
            right: 10%;
            animation-delay: 1s;
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(46, 204, 113, 0.3));
        }

        .floating-icon.heart {
            bottom: 20%;
            left: 30%;
            animation-delay: 2s;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(52, 152, 219, 0.3));
        }

        .floating-icon.dove {
            top: 30%;
            right: 30%;
            animation-delay: 3s;
            background: linear-gradient(135deg, rgba(241, 196, 15, 0.3), rgba(155, 89, 182, 0.3));
        }

        .visual-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.2), transparent 70%);
            border-radius: 50%;
            animation: glowPulse 4s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.1);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        /* Right Side - Closing Message */
        .closing-message {
            flex: 1;
            padding: 40px;
        }

        .closing-title {
            margin-bottom: 40px;
        }

        .title-line {
            display: block;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .title-line.accent {
            background: linear-gradient(135deg, #3498db, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 4rem;
        }

        .closing-text {
            margin-bottom: 40px;
        }

        .fade-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .fade-text.delay-1 {
            animation-delay: 1s;
        }

        .fade-text.delay-2 {
            animation-delay: 1.4s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .closing-quote {
            position: relative;
            padding: 30px 40px;
            margin: 40px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border-left: 4px solid #3498db;
            animation: quoteAppear 0.8s ease-out 1.8s forwards;
            opacity: 0;
            transform: scale(0.95);
        }

        @keyframes quoteAppear {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .quote-icon {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 3rem;
            color: rgba(52, 152, 219, 0.2);
        }

        .quote-text {
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 10px;
            color: white;
        }

        .quote-ref {
            text-align: right;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        /* Closing Blessing */
        .closing-blessing {
            margin: 50px 0 30px;
            position: relative;
        }

        .blessing-line {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #3498db, #9b59b6);
            margin-bottom: 20px;
            animation: lineExpand 1s ease-out 2.2s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        @keyframes lineExpand {
            to {
                transform: scaleX(1);
            }
        }

        .blessing-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
        }

        .blessing-ref {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        /* Closing Buttons */
        .closing-buttons {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            animation: buttonsAppear 0.8s ease-out 2.4s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes buttonsAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .closing-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .closing-btn.primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }

        .closing-btn.secondary {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .closing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .closing-btn.primary:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
        }

        .closing-btn.secondary:hover {
            border-color: #3498db;
            background: rgba(52, 152, 219, 0.1);
        }

        /* Footer */
        .closing-footer {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .heart-badge i {
            color: #e74c3c;
            animation: heartBeat 1.5s ease-in-out infinite;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .closing-content {
                flex-direction: column;
                padding: 80px 30px;
                gap: 40px;
            }
            
            .closing-visual {
                height: 400px;
            }
            
            .title-line {
                font-size: 2.8rem;
            }
            
            .title-line.accent {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 768px) {
            .closing-content {
                padding: 60px 20px;
            }
            
            .title-line {
                font-size: 2.2rem;
            }
            
            .title-line.accent {
                font-size: 2.6rem;
            }
            
            .fade-text {
                font-size: 1rem;
            }
            
            .quote-text {
                font-size: 1.2rem;
            }
            
            .closing-buttons {
                flex-direction: column;
            }
            
            .closing-footer {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .visual-container {
                width: 300px;
                height: 300px;
            }
            
            .floating-icon {
                width: 60px;
                height: 60px;
            }
            
            .floating-icon i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .title-line {
                font-size: 1.8rem;
            }
            
            .title-line.accent {
                font-size: 2.2rem;
            }
            
            .closing-quote {
                padding: 20px;
            }
            
            .quote-text {
                font-size: 1rem;
            }
        }

        /* Mobile Menu Footer with Logo */
        .mobile-footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 15px 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            margin-top: 20px;
        }

        .mobile-footer-logo-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .mobile-footer-logo-img:hover {
            transform: scale(1.05);
            border-color: #3498db;
        }

        .mobile-footer-logo span {
            color: white;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        body.dark-theme .mobile-footer-logo-img {
            border-color: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 576px) {
            .mobile-footer-logo-img {
                width: 40px;
                height: 40px;
            }
            
            .mobile-footer-logo span {
                font-size: 16px;
            }
        }

        /* ===== NEW FOOTER STYLES - REPLACES OLD ONE ===== */
.do-footer {
    padding: 80px 10% 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.do-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dark theme - matches website background */
body.dark-theme .do-footer {
    background: linear-gradient(135deg, #0a1928 0%, #1a2f3f 50%, #0d2b3e 100%);
}

/* Light theme - matches website background */
body.light-theme .do-footer {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
}

.do-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 30px;
}

/* Logo */
.do-footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.do-footer-logo:hover {
    transform: scale(1.08);
    border-color: #9b59b6;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Brand text */
.do-footer-brand h2 {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 700;
}

body.light-theme .do-footer-brand h2 {
    color: #2c3e50;
}

body.dark-theme .do-footer-brand h2 {
    color: #ffffff;
}

.do-footer-brand p {
    font-size: 16px;
    max-width: 300px;
    line-height: 1.6;
    font-weight: 400;
}

body.light-theme .do-footer-brand p {
    color: #4a5568;
}

body.dark-theme .do-footer-brand p {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Icons */
.do-footer-social {
    display: flex;
    gap: 30px;
}

.social-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
    text-decoration: none;
}

/* Email icon */
.social-icon .fa-envelope {
    color: #EA4335;
    font-size: 34px;
}

/* Instagram icon */
.social-icon .fa-instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
}

/* WhatsApp icon */
.social-icon .fa-whatsapp {
    color: #25D366;
    font-size: 34px;
}

/* Hover effects */
.social-icon:hover {
    transform: translateY(-8px);
}

/* Dark theme social background */
body.dark-theme .social-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.dark-theme .social-icon:hover {
    border-color: #d4b26a;
    box-shadow: 0 0 30px rgba(212, 178, 106, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

/* Light theme social background */
body.light-theme .social-icon {
    background: white;
    border: 2px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .social-icon:hover {
    border-color: #3498db;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.3);
    background: #f8fafc;
}

/* Copyright - NO line, minimal spacing */
.do-footer-copyright {
    text-align: center;
    padding: 0 0 10px 0;
}

.do-footer-copyright p {
    font-size: 14px;
}

body.light-theme .do-footer-copyright p {
    color: #4a5568;
}

body.dark-theme .do-footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .do-footer {
        padding: 60px 8% 15px;
    }
    
    .do-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 20px;
    }
    
    .do-footer-brand p {
        margin: 0 auto;
    }
    
    .do-footer-social {
        justify-content: center;
    }
    
    .do-footer-logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .do-footer {
        padding: 50px 5% 10px;
    }
    
    .do-footer-logo {
        width: 80px;
        height: 80px;
    }
    
    .do-footer-brand h2 {
        font-size: 24px;
    }
    
    .do-footer-brand p {
        font-size: 15px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .social-icon .fa-envelope,
    .social-icon .fa-whatsapp {
        font-size: 30px;
    }
    
    .social-icon .fa-instagram {
        font-size: 32px;
    }
    
    .do-footer-copyright {
        padding: 0 0 5px 0;
    }
    
    .do-footer-copyright p {
        font-size: 12px;
    }
}