/* ===========================
   Get Started CTA Section - FinPluss
   Component-specific styles only
   =========================== */

/* ========== SECTION CONTAINER ========== */
.get-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #243E93 0%, #4a5fc1 100%);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.get-started-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ========== CONTENT ========== */
.get-started-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: get-started-fadeIn 0.8s ease forwards;
}

.get-started-title {
    font-size: 42px;
    margin: 0 0 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.get-started-subtitle {
    font-size: 20px;
    margin: 0 0 40px;
    opacity: 0.95;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* ========== BUTTONS ========== */
.get-started-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.get-started-btn {
    background: #ffffff;
    color: #243E93;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #F36D21;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.get-started-btn:hover::before {
    width: 300px;
    height: 300px;
}

.get-started-icon {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: get-started-bounce 1s ease-in-out infinite;
}

.get-started-btn-text {
    position: relative;
    z-index: 1;
}

.get-started-btn:nth-child(1) .get-started-icon {
    animation-delay: 0s;
}

.get-started-btn:nth-child(2) .get-started-icon {
    animation-delay: 0.5s;
}

/* ========== BACKGROUND ELEMENTS ========== */
.get-started-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.get-started-bg-circle-1 {
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(243, 109, 33, 0.1);
    animation: get-started-float 15s ease-in-out infinite;
}

.get-started-bg-circle-2 {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    animation: get-started-float 20s ease-in-out infinite reverse;
}

/* ========== PARTICLES ========== */
.get-started-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.get-started-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: get-started-particle-float 15s linear infinite;
}

/* ========== RIPPLE EFFECT ========== */
.get-started-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(243, 109, 33, 0.5);
    pointer-events: none;
    transform: scale(0);
    animation: get-started-ripple 0.6s ease-out;
}

/* ========== ANIMATIONS ========== */
@keyframes get-started-fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes get-started-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes get-started-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes get-started-particle-float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes get-started-ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .get-started-section {
        padding: 70px 0;
    }

    .get-started-title {
        font-size: 36px;
    }

    .get-started-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .get-started-bg-circle-1 {
        width: 400px;
        height: 400px;
    }

    .get-started-bg-circle-2 {
        width: 320px;
        height: 320px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .get-started-section {
        padding: 60px 0;
    }

    .get-started-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .get-started-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .get-started-buttons {
        flex-direction: column;
        align-items: center;
    }

    .get-started-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 30px;
        font-size: 16px;
    }

    .get-started-icon {
        font-size: 20px;
    }

    .get-started-bg-circle-1 {
        width: 300px;
        height: 300px;
        top: -40%;
        right: -20%;
    }

    .get-started-bg-circle-2 {
        width: 250px;
        height: 250px;
        bottom: -20%;
        left: -20%;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .get-started-section {
        padding: 50px 0;
    }

    .get-started-container {
        padding: 0 15px;
    }

    .get-started-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .get-started-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .get-started-btn {
        padding: 12px 25px;
        font-size: 15px;
        gap: 8px;
    }

    .get-started-icon {
        font-size: 18px;
    }

    .get-started-btn::before {
        display: none; /* Disable hover effect on small screens for performance */
    }

    .get-started-btn:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .get-started-title {
        font-size: 22px;
    }

    .get-started-subtitle {
        font-size: 13px;
    }

    .get-started-btn {
        padding: 11px 20px;
        font-size: 14px;
        max-width: 240px;
    }

    .get-started-icon {
        font-size: 16px;
    }
}