/* common css  */
.pt_1 {
    padding-top: 5px;
}
.pt_2 {
    padding-top: 10px;
}
.pt_3 {
    padding-top: 15px;
}
.pt_4 {
    padding-top: 20px;
}
.pt_5 {
    padding-top: 25px;
}

/* CTA Footer Section */
.cta-footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/backgro.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-footer-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.cta-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-desc {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--secondary-color);
    color: #000;
}

.info-text span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 3px;
}

.info-text a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--secondary-color);
}

/* Modern Form Styles */
.cta-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern.full-width {
    margin-bottom: 30px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    padding: 15px 0 !important;
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
}

.form-group-modern textarea {
    height: 100px;
    resize: none;
}

.form-group-modern label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--secondary-color) !important;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern input.has-value + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label,
.form-group-modern textarea.has-value + label {
    top: -10px;
    font-size: 12px;
    color: var(--secondary-color);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: transparent;
    opacity: 0;
}

/* Fix browser autocomplete background */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.cta-submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: #000;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.cta-submit-btn i {
    transition: transform 0.3s ease;
}

.cta-submit-btn:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* Loader Styles */
.btn-loader {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* CTA Responsive */
@media (max-width: 1200px) {
    .cta-wrapper {
        gap: 40px;
    }
    .cta-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-info-cards {
        align-items: center;
        margin-bottom: 40px;
    }
    .info-card {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cta-footer-section {
        padding: 60px 0 !important;
    }
    .cta-form-container {
        padding: 30px 20px;
    }
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}