/* ============================================
   CUSTOM JEWELRY CTA SECTION
   Elegant Premium Styling
   ============================================ */

.custom-cta-section {
    padding: 2.5rem 0;
    background: #FFFFFF;
    position: relative;
}

/* CTA Container */
.custom-cta-container {
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #6B0F1A 100%);
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
    overflow: hidden;
}

.custom-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative Corner Elements */
.cta-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.cta-decoration-1 {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 16px;
}

.cta-decoration-2 {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 16px;
}

.cta-decoration-3 {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 16px;
}

.cta-decoration-4 {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 16px;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 1;
}

/* Icon */
.cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #8B0000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Title */
.cta-title {
    font-family: var(--font-bengali-display);
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Subtitle */
.cta-subtitle {
    font-family: var(--font-english-body);
    font-size: 1rem;
    color: #F5DEB3;
    margin-bottom: 1.75rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-english-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn i {
    font-size: 1rem;
}

/* Primary Button */
.cta-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Secondary Button */
.cta-btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #D4AF37;
}

.cta-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-cta-section {
        padding: 2rem 0;
    }

    .custom-cta-container {
        padding: 2rem 2rem;
    }

    .cta-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.85rem;
    }

    .cta-btn {
        padding: 0.7rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .custom-cta-container {
        padding: 1.75rem 1.5rem;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}