/* Box sizing reset */
.acb-itk-wrapper,
.acb-itk-wrapper * {
    box-sizing: border-box;
}

.acb-itk-wrapper {
    width: 100%;
    background-color: #0b071e;
    padding: 90px 20px 80px;
}

.acb-itk-container {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Subtitle "BEGIN" (White Text) */
.acb-itk-subtitle-top {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Header Title (White base color, <span> highlighted in gold) */
.acb-itk-title {
    color: #ffffff;
    font-size: 52px;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    margin: 0 0 35px 0;
    font-weight: 400;
}

/* Highlighted span class within Title */
.acb-itk-title span,
.acb-itk-title .acb-itk-highlight {
    color: #d99a6c;
}

/* Action Buttons Under Title */
.acb-itk-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.acb-itk-btn {
    display: inline-block;
    padding: 13px 26px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px;
}

/* Button 1 (Solid Gold) */
.acb-itk-btn-primary {
    background-color: #d99a6c;
    color: #ffffff;
    border: 1px solid #d99a6c;
}

.acb-itk-btn-primary:hover {
    background-color: #c4885b;
    border-color: #c4885b;
}

/* Button 2 (Outlined) */
.acb-itk-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #d99a6c;
}

.acb-itk-btn-secondary:hover {
    background-color: rgba(217, 154, 108, 0.15);
    color: #ffffff;
}

/* Description Text */
.acb-itk-description {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto 35px;
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Newsletter Form */
.acb-itk-form {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 70px;
}

.acb-itk-input-group {
    display: flex;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.acb-itk-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1.5px;
    outline: none;
}

.acb-itk-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.acb-itk-submit-btn {
    background-color: #d99a6c;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.acb-itk-submit-btn:hover {
    opacity: 0.9;
}

.acb-itk-mail-icon {
    stroke: currentColor;
}

/* Bottom Info Bar */
.acb-itk-bottom-bar {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.01);
}

.acb-itk-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.acb-itk-bar-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.acb-itk-spacer-col {
    flex: 0.8;
}

.acb-itk-label {
    color: #d99a6c;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.acb-itk-email-link {
    color: #ffffff;
    font-size: 26px;
    font-family: 'Georgia', serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

.acb-itk-email-link:hover {
    color: #d99a6c;
}

/* Social Links */
.acb-itk-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acb-itk-social-btn {
    color: #ffffff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.acb-itk-social-btn:hover {
    background: #d99a6c;
    color: #ffffff;
}

.acb-itk-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Styles */
@media (max-width: 850px) {
    .acb-itk-bottom-bar {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .acb-itk-bar-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 30px;
        width: 100%;
    }

    .acb-itk-spacer-col {
        display: none;
    }
}

@media (max-width: 600px) {
    .acb-itk-title {
        font-size: 36px;
    }

    .acb-itk-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .acb-itk-btn {
        width: 100%;
    }

    .acb-itk-input-group {
        flex-direction: column;
    }

    .acb-itk-submit-btn {
        justify-content: center;
        width: 100%;
    }

    .acb-itk-email-link {
        font-size: 18px;
    }
}