/* assets/css/accelerator-style.css */
:root {
    --primary-navy: #3A4B5C;
    --secondary-gold: #FFC107;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
	background: #ebebeb
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}


/* Main wrapper styling */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/680137b2fb5b5ef20f468626.png') center/cover no-repeat !important;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
   color:#fff;
    font-family: 'Playfair Display', serif;
}

/* Program Info Section */
.program-info-section {
    padding: 3rem 0;
}

.program-header {
    margin-bottom: 1rem;
}

.program-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.program-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.btn-investor {
    background-color: var(--secondary-gold);
    color: var(--text-dark);
    padding: 12px 25px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-investor:hover {
    background-color: #E0A800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0 5rem 0;
}

.faq-item {
    background: var(--white);
    border-radius: 0;
    margin-bottom: 0;
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.faq-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8f9fa;
}

.faq-header h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-icon {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    border-top: 1px solid var(--border-color);
}

.faq-body {
    padding: 2rem;
    background: var(--white);
}

.faq-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-body p:last-child {
    margin-bottom: 0;
}

.faq-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-header {
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
}

.program-fee-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.program-fee {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.program-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.detail-item i {
    font-size: 0.5rem;
}

.detail-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn-apply {
    background-color: var(--secondary-gold);
    color: var(--text-dark);
    padding: 15px 40px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-apply:hover {
    background-color: #E0A800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.payment-info {
    padding: 2rem;
    background: #f8f9fa;
    text-align: center;
}

.payment-icons {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.member-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .program-info-section .row {
        text-align: center;
    }

    .btn-investor {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .program-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .program-title {
        font-size: 1.8rem;
    }

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

    .faq-header {
        padding: 1rem 1.5rem;
    }

    .faq-body {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .program-fee {
        font-size: 2rem;
    }

    .payment-info {
        padding: 1.5rem;
    }

    .payment-icons {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .payment-icons i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .program-title {
        font-size: 1.5rem;
    }

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

    .faq-header h4 {
        font-size: 1rem;
    }

    .program-fee {
        font-size: 1.8rem;
    }

    .detail-item {
        justify-content: flex-start;
    }

    .hero-section {
        height: 300px;
    }

    .cta-section,
    .faq-section,
    .program-info-section {
        padding: 3rem 0;
    }
}












/* Custom Form Styles */
:root {
    --primary-color: #FFBF00;
    --border-color: #c3cad8;
    --text-color: #2c3345;
    --placeholder-color: #8c8c8c;
    --shadow-color: #DEDFE0;
    --required-color: #dc3545;
}



.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.ghl-form-wrap {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 1px 1px 20px 0px var(--shadow-color);
    margin-bottom: 20px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Form Labels */
.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 8px;
    display: block;
}

.required {
    color: var(--required-color);
    font-weight: 500;
}

/* Form Controls */
.form-control, .form-select {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #FFFFFF;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: var(--placeholder-color);
    font-weight: 300;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.25);
}

/* Phone Input Styling */
.iti {
    width: 100%;
}

.iti__selected-flag {
    background-color: transparent;
    border-right: 1px solid var(--border-color);
    padding: 0 12px;
}

.iti__country-list {
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
}

/* Country Select with Flags */
.country-select {
    width: 100%;
}

.select2-container {
    width: 100% !important;
}

.select2-selection {
    height: 48px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
}

.select2-selection__rendered {
    line-height: 24px !important;
    padding: 0 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-color);
}

.select2-selection__placeholder {
    color: var(--placeholder-color) !important;
}

.select2-selection__arrow {
    height: 46px !important;
    right: 8px !important;
}

.select2-dropdown {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-results__option {
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
}

.select2-results__option--highlighted {
    background-color: var(--primary-color) !important;
    color: #000000 !important;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--placeholder-color);
    margin-top: 5px;
}

/* Signature Pad */
.signature-container {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
    background-color: #FFFFFF;
}

.signature-pad {
    width: 100%;
    height: 150px;
    border: none;
    cursor: crosshair;
    touch-action: none;
    user-select: none;
}

.clear-signature {
    margin-top: 10px;
    font-size: 12px;
    padding: 5px 10px;
}

/* Product Container */
.product-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: #FFFFFF;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #FFFFFF;
}

.product-item input[type="checkbox"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.product-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.product-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

.product-price .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

/* Payment Section */
.payment-section {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: #FFFFFF;
}

.credit-card-container {
    margin-bottom: 15px;
}

.payment-footer {
    text-align: center;
    font-style: italic;
    color: var(--placeholder-color);
    font-size: 14px;
    margin-top: 15px;
}

/* Buttons */
.btn-next, .btn-submit {
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 18px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
}

.btn-next:hover, .btn-submit:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-next:active, .btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading States */
.v-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.v-moon1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.v-moon2 {
    position: absolute;
    width: 15%;
    height: 15%;
    border-radius: 50%;
    background-color: #188bf6;
    top: 42.5%;
    left: 42.5%;
}

.v-moon3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #188bf6;
    top: 0;
    left: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .ghl-form-wrap {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .container {
        padding: 0 10px;
    }

    .btn-next, .btn-submit {
        width: 100%;
        padding: 15px 30px;
        font-size: 18px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-control, .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }

    .product-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-price {
        align-self: flex-end;
    }
}
