/* Outer wrapper spacing reduced */
.roayaty-cta-wrapper {
    max-width: 1320px;
    margin: 20px auto; /* Reduced from 40px */
    padding: 0 20px;
    box-sizing: border-box;
}

.roayaty-cta-banner {
    position: relative;
    width: 100%;
    border-radius: 14px; /* Slightly tighter border radius */
    overflow: hidden;
    padding: 22px 20px; /* Reduced vertical padding from 50px to 22px */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: linear-gradient(90deg, #8a6027 0%, #b88a3e 35%, #a87b35 65%, #6e481b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Position SVG backdrop absolute behind content */
.cta-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image sharp and properly cropped */
    object-position: center;
    opacity: 0.25; /* Controls image strength over the golden gradient */
    mix-blend-mode: luminosity; /* Blends artwork seamlessly into gold tone */
    pointer-events: none;
    z-index: 1;
}

/* Content Container with tighter vertical gap */
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Heading with tight line-height */
.cta-title {
    color: #ffffff;
    font-size: 1.45rem; /* Reduced from 1.85rem */
    font-weight: 700;
    margin: 0 0 3px 0; /* Minimal bottom margin */
    line-height: 1.1;  /* Tightened line height */
    letter-spacing: -0.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Subtitle with tight line-height */
.cta-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem; /* Reduced from 0.95rem */
    font-weight: 400;
    line-height: 1.15;  /* Tightened line height */
    margin: 0 0 12px 0; /* Reduced space before button from 22px to 12px */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Compact CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ba8a3f 0%, #9e7029 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 5px 8px 5px 14px; /* Compact padding */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1; /* Tight line height */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.cta-btn:hover {
    background: linear-gradient(180deg, #c7974a 0%, #ab7b31 100%);
    transform: translateY(-1px);
}

.cta-btn-arrow {
    font-size: 0.75rem;
}

.cta-btn-circle-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .roayaty-cta-banner {
        padding: 16px 12px;
    }

    .cta-title {
        font-size: 1.15rem;
    }

    .cta-text {
        font-size: 0.76rem;
        margin-bottom: 10px;
    }
}