/* --- General Section Setup --- */
.split-cta-section {
    overflow: hidden;
}

/* --- Left Column: Newsletter --- */
.left-newsletter-col {
    min-height: 500px; /* Ensures a good height on mobile */
    position: relative;
}

.newsletter-black-box {
    background-color: #0b0b0b;
    padding: 60px 50px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Hollow Text Effect */
.hollow-heading {
    font-family: var(--font-03);
    font-size: 32px;
    letter-spacing: 3px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #dca759; /* Gold outline */
}

/* Input Group */
.custom-input-group {
    border-bottom: 2px dotted #333;
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}

.custom-input-group:focus-within {
    border-bottom-color: #dca759;
}

.custom-email-input {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding-left: 0;
    box-shadow: none !important;
    font-size: 20px;
    border-radius: 0;
    font-family: var(--font-03);
}

.custom-email-input::placeholder {
    color: #555;
}

.custom-submit-btn {
    background: transparent;
    border: none;
    color: #dca759;
    font-size: 28px;
    padding: 0;
    margin-left: 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.custom-submit-btn:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Custom Checkbox */
.custom-checkbox {
    background-color: transparent;
    border: 1px solid #dca759;
    border-radius: 0; /* Square checkbox */
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: #dca759;
    border-color: #dca759;
}

.terms-label {
    color: #dca759;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-02);
}

/* Validation Error Fixes for dark background */
#frm_newsletter .error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* --- Right Column: Contact Info --- */
.right-contact-col {
    background: linear-gradient(135deg, #e4c77c 0%, #c49949 50%, #e4c77c 100%);
    min-height: 500px;
}

.phone-icon-box {
    border-radius: 8px;
    width: 80px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-box i {
    font-size: 165px;
    color: #ffffff;
}

.feel-free-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #333333;
    font-family: var(--font-02);
}

.phone-number {
    font-size: 42px;
    font-weight: 300;
    color: #111111;
    letter-spacing: 1px;
    font-family: var(--font-01);
}

.hours-text {
    font-size: 22px;
    color: #222222;
    font-weight: 400;
    font-family: var(--font-02);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .hollow-heading { font-size: 24px; }
    .newsletter-black-box { padding: 40px 30px; }
    .phone-number { font-size: 32px; }
    .phone-icon-box { width: 60px; height: 90px; }
    .phone-icon-box i { font-size: 100px; }
    .left-newsletter-col, .right-contact-col { min-height: 400px; }
}