
        /* Reuse all existing CSS variables and base styles from index.html */
        :root {
            --glass-blue: rgba(74, 144, 226, 0.85);
            --deep-maroon: #8B0000;
            --sacred-gold: #D4AF37;
            --pure-white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-blue: #1A365D;
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .scripture-font {
            font-family: 'Crimson Text', serif;
            font-style: italic;
        }

        /* Header - Reused from index.html */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
        }

        header.scrolled {
            padding: 0.6rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-strong);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
        }

        .logo-image {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .logo-container:hover .logo-image {
            transform: scale(1.05);
        }

        .logo-text {
            margin-left: 1rem;
        }

        .logo-text h1 {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            margin-bottom: 0.2rem;
            color: var(--dark-blue);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: clamp(0.7rem, 1vw, 0.9rem);
            color: var(--deep-maroon);
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Navigation - Reused from index.html */
        .nav-desktop {
            display: flex;
            align-items: center;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
        }

        .nav-desktop li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--deep-maroon);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sacred-gold);
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Mobile Menu - Reused from index.html */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 2000;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-nav a {
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
        }

        /* Contact Page Specific Styles */
        .main-content {
            margin-top: 100px;
        }

        /* Hero Section */
        .contact-hero {
            height: 60vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(139, 0, 0, 0.7)),
                        url('images/hd1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            max-width: 800px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

        .hero-glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--deep-maroon), var(--sacred-gold), var(--glass-blue));
        }

        .hero-glass-card h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 1rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-glass-card p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        /* Contact Grid */
        .contact-section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--sacred-gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #666;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .contact-card {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--deep-maroon), var(--sacred-gold));
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.5; }
        }

        .contact-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            text-align: center;
        }

        .contact-card p {
            color: #666;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--dark-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 8px;
        }

        .contact-link:hover {
            background: rgba(139, 0, 0, 0.05);
            color: var(--deep-maroon);
            padding-left: 1rem;
        }

        .contact-link i {
            color: var(--sacred-gold);
            width: 20px;
            text-align: center;
        }

        /* Form Section */
        .form-section {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
            border-radius: 30px;
            padding: 4rem;
            margin-bottom: 5rem;
            position: relative;
            overflow: hidden;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--deep-maroon), var(--sacred-gold), var(--glass-blue));
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .form-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .form-seal {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--sacred-gold);
        }

        .form-seal img {
            width: 80%;
            height: auto;
            border-radius: 50%;
        }

        .form-sidebar {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
        }

        .form-sidebar h3 {
            color: var(--deep-maroon);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .form-sidebar h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sacred-gold);
        }

        .sidebar-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .sidebar-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .sidebar-item h4 {
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Floating Label Form */
        .form-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .floating-input {
            width: 100%;
            padding: 1.2rem 1rem 0.5rem;
            font-size: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            background: var(--pure-white);
            transition: all 0.3s ease;
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        .floating-input:focus {
            border-color: var(--glass-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
        }

        .floating-label {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #888;
            pointer-events: none;
            transition: all 0.3s ease;
            background: var(--pure-white);
            padding: 0 0.5rem;
        }

        .floating-input:focus + .floating-label,
        .floating-input:not(:placeholder-shown) + .floating-label {
            top: 0.5rem;
            transform: translateY(0);
            font-size: 0.8rem;
            color: var(--deep-maroon);
        }

        .form-select {
            width: 100%;
            padding: 1.2rem 1rem;
            font-size: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            background: var(--pure-white);
            transition: all 0.3s ease;
            outline: none;
            font-family: 'Inter', sans-serif;
            appearance: none;
            background-image: url("images/hd1.png");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        .form-select:focus {
            border-color: var(--glass-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--deep-maroon), var(--glass-blue));
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
        }

        /* Map Section */
        .map-section {
            margin-bottom: 5rem;
        }

        .map-container {
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            position: relative;
        }

        #contactMap {
            width: 100%;
            height: 100%;
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            max-width: 300px;
            box-shadow: var(--shadow-soft);
            z-index: 1000;
        }

        .map-overlay h4 {
            color: var(--deep-maroon);
            margin-bottom: 1rem;
        }

        /* Social Gallery */
        .social-gallery {
            background: linear-gradient(135deg, var(--dark-blue), #2a4365);
            border-radius: 30px;
            padding: 4rem 2rem;
            margin-bottom: 5rem;
            text-align: center;
        }

        .social-gallery h2 {
            color: white;
            margin-bottom: 3rem;
        }

        .social-icons-large {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-icon-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-icon-large:hover {
            background: var(--sacred-gold);
            transform: translateY(-10px);
        }

        .social-icon-large:hover::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: var(--sacred-gold);
            opacity: 0.3;
            z-index: -1;
            animation: halo 2s infinite;
        }

        @keyframes halo {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        /* Footer - Reused from index.html */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sacred-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-logo {
            display: flex;
            justify-content: flex-start;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--sacred-gold);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .main-content {
                margin-top: 120px;
            }
            
            .contact-hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .hero-glass-card {
                padding: 2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-section, .form-section {
                padding: 3rem 1.5rem;
            }
            
            .form-section {
                padding: 2.5rem 1.5rem;
            }
            
            .map-container {
                height: 400px;
            }
            
            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 1rem;
                max-width: 100%;
            }
            
            .social-gallery {
                padding: 3rem 1.5rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-logo {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-glass-card h1 {
                font-size: 2rem;
            }
            
            .hero-glass-card p {
                font-size: 1rem;
            }
            
            .contact-card {
                padding: 1.5rem;
            }
            
            .social-icon-large {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* Button Styles - Reused from index.html */
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            min-height: 48px;
        }

        .btn-primary {
            background: var(--deep-maroon);
            color: white;
            border: 2px solid var(--deep-maroon);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--deep-maroon);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark-blue);
            border: 2px solid var(--dark-blue);
        }

        .btn-secondary:hover {
            background: var(--dark-blue);
            color: white;
            transform: translateY(-5px);
        }
   