/**
 * Web Design Service CTA Section Styles
 * RiseCreatives Theme - webdesign-cta.css
 */

/* ==========================================
   CTA Section Container
   ========================================== */

.rise-theme-webdesign-cta-section {
    width: 100%;
    padding: 120px 20px;
    background-image: url('/wp-content/uploads/2025/10/展躍網路CTA_Banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.rise-theme-webdesign-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   CTA Content
   ========================================== */

.rise-theme-webdesign-cta-content {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(63, 119, 111, 0.1);
}

.rise-theme-webdesign-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rise-theme-webdesign-cta-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* ==========================================
   CTA Buttons
   ========================================== */

.rise-theme-webdesign-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rise-theme-webdesign-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    justify-content: center;
}

.rise-theme-cta-btn-icon {
    font-size: 1.3rem;
}

.rise-theme-cta-btn-text {
    font-family: 'Noto Sans TC', sans-serif;
}

/* Primary Button - 立即填表諮詢 */
.rise-theme-webdesign-cta-primary {
    background: linear-gradient(135deg, #3F776F 0%, #2d5a54 100%);
    color: #ffffff;
    border: 2px solid #3F776F;
}

.rise-theme-webdesign-cta-primary:hover {
    background: linear-gradient(135deg, #2d5a54 0%, #1f4038 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 119, 111, 0.3);
}

/* Secondary Button - 加LINE免費諮詢 */
.rise-theme-webdesign-cta-secondary {
    background: #ffffff;
    color: #3F776F;
    border: 2px solid #3F776F;
}

.rise-theme-webdesign-cta-secondary:hover {
    background: #3F776F;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 119, 111, 0.3);
}

/* ==========================================
   Background Decoration
   ========================================== */

.rise-theme-webdesign-cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background-image: 
        radial-gradient(
            circle at 80% 20%,
            rgba(63, 119, 111, 0.05) 0px,
            rgba(63, 119, 111, 0.05) 100px,
            transparent 100px,
            transparent 200px,
            rgba(255, 211, 145, 0.05) 200px,
            rgba(255, 211, 145, 0.05) 300px,
            transparent 300px
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(227, 226, 191, 0.05) 0px,
            rgba(227, 226, 191, 0.05) 150px,
            transparent 150px,
            transparent 250px,
            rgba(63, 119, 111, 0.03) 250px,
            rgba(63, 119, 111, 0.03) 350px,
            transparent 350px
        );
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .rise-theme-webdesign-cta-section {
        padding: 80px 20px;
    }
    
    .rise-theme-webdesign-cta-content {
        padding: 50px 30px;
    }
    
    .rise-theme-webdesign-cta-title {
        font-size: 2rem;
    }
    
    .rise-theme-webdesign-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .rise-theme-webdesign-cta-btn {
        min-width: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .rise-theme-webdesign-cta-section {
        padding: 60px 15px;
    }
    
    .rise-theme-webdesign-cta-content {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .rise-theme-webdesign-cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .rise-theme-webdesign-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .rise-theme-webdesign-cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .rise-theme-webdesign-cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
    }
}
