.community-marquee-section{
    padding: 2rem 0;
}
.unified-split-footer-gap {
    height: 90vh;
}

@media (max-width: 480px) {
    .unified-split-footer-gap {
        height: 30vh;
    }
}
/* =========================================
   SACRED CONTACT SECTION
   ========================================= */
.sacred-contact-section {
    position: relative;
    padding: 2rem;
    background-color: var(--black-void);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(100%);
    z-index: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side Info */
.contact-desc {
    font-family: var(--body-font);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--liquid-gold);
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--liquid-gold);
    width: 40px;
    text-align: center;
}

.info-card h4 {
    font-family: var(--heading-font);
    color: var(--soft-white);
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
}

.info-card p,a {
    font-family: var(--body-font);
    color:var(--soft-white);
    margin: 0;
    font-size: 0.95rem;
    text-decoration: none;
}
/* Hide Honeypot completely */
.honey-pot {
    display: none !important;
}

/* Fix Select Box Visibility */
.contact-select {
    color: var(--soft-white); /* Ensure text is visible */
    background-color: transparent; /* Ensure bg is transparent */
    cursor: pointer;
    appearance: none; /* Remove default browser arrow */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFD700%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px auto;
}

/* Fix Option colors for dropdown menu */
.contact-select option {
    background-color: var(--black-void);
    color: var(--soft-white);
    padding: 10px;
}

/* Ensure label moves up when select has a value */
.contact-select:focus ~ label,
.contact-select:valid ~ label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--liquid-gold);
}

/* Floating Input Styles */
.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--soft-white);
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--body-font);
    
    /* FIX FOR BROWSER AUTOFILL WHITE BACKGROUND */
    -webkit-text-fill-color: var(--soft-white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Specific fix for Chrome/Edge Autofill */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover, 
.input-group input:-webkit-autofill:focus,
.input-group textarea:-webkit-autofill,
.input-group textarea:-webkit-autofill:hover,
.input-group textarea:-webkit-autofill:focus,
.input-group select:-webkit-autofill,
.input-group select:-webkit-autofill:hover,
.input-group select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--black-void) inset !important;
    -webkit-text-fill-color: var(--soft-white) !important;
    caret-color: var(--soft-white);
    background-color: transparent !important;
    background-image: none !important;
}
/* Right Side: Glass Form */
.contact-form-wrapper {
    perspective: 1000px;
}

.sacred-form {
    background: rgba(11, 11, 13, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sacred-form h3 {
    font-family: var(--heading-font);
    color: var(--liquid-gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Floating Input Styles */
.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--soft-white);
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--body-font);
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.input-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--liquid-gold);
    transition: width 0.4s ease;
}

/* Input Animation Logic */
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--liquid-gold);
}

.input-group input:focus ~ .input-line::after,
.input-group textarea:focus ~ .input-line::after,
.input-group select:focus ~ .input-line::after {
    width: 100%;
}

/* Submit Button */
.btn {
    width: 100%;
}

.btn:hover {
    color: var(--soft-white);
}

/* Responsive */
/* =========================================
   RESPONSIVE CONTACT SECTION FIX
   ========================================= */
@media (max-width: 900px) {
    .sacred-contact-section {
        padding: 1.5rem 1rem; /* Reduce outer padding */
        min-height: auto;     /* Allow content to dictate height */
        align-items: flex-start;
    }

    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem; /* Reduced gap for tighter integration */
    }

    /* Make Info Cards more compact on mobile */
    .info-cards {
        gap: 1rem;
        width: 100%;
    }

    .info-card {
        padding: 1rem; /* Smaller padding inside cards */
        gap: 1rem;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p, .info-card a {
        font-size: 0.85rem;
    }

    /* Optimize Form for Mobile */
    .sacred-form {
        padding: 1.5rem; /* Much smaller internal padding */
        max-width: 90%;
        width: 100vw;
        box-sizing: border-box;
         margin: auto;
    }

    .sacred-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .input-group {
        margin-bottom: 1.5rem;
    }
}

/* Extra tweak for very small screens like 360px */
@media (max-width: 400px) {
    .sacred-contact-section {
        padding: 1rem 0.8rem;
    }
    
    .info-card {
        flex-direction: row; /* Keep icon and text side-by-side */
        align-items: flex-start;
    }
    
    .sacred-form {
        padding: 1.2rem;
        border-radius: 8px;
    }
}
