/*--------------------------------------------------------------
# Pricing Calculator Styles
--------------------------------------------------------------*/

:root {
    --primary-color: #66FCF1;
    --primary-color-rgb: 102, 252, 241;
    --secondary-color: #45A29E;
    --dark-color: #0B0C10;
    --dark-light-color: #1F2833;
    --light-color: #C5C6C7;
    --white-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#calculator-hero {
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.9) 0%, rgba(31, 40, 51, 0.9) 100%), url('/placeholder.svg?height=1080&width=1920') center/cover no-repeat;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

#calculator-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

#calculator-hero .hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

#calculator-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 30px;
}

.hero-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/*--------------------------------------------------------------
# Calculator Section
--------------------------------------------------------------*/
.calculator-wrapper {
    background-color: var(--dark-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.calculator-section {
    position: relative;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

.section-header p {
    color: var(--light-color);
    font-size: 1rem;
}

/* Website Type Cards */
.website-type-card {
    background-color: var(--dark-light-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.website-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.website-type-card.selected {
    border: 2px solid var(--primary-color);
    background-color: rgba(102, 252, 241, 0.05);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website-type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 15px;
    text-align: center;
}

.website-type-card p {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-features span {
    color: var(--light-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.card-features span i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.card-footer {
    text-align: center;
}

.read-more {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Domain Input */
.domain-input-group {
    background-color: var(--dark-light-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.input-wrapper .form-control {
    padding-left: 45px;
    height: 50px;
    background-color: var(--dark-color);
    border: 1px solid rgba(102, 252, 241, 0.2);
    color: var(--white-color);
    border-radius: 8px;
}

.input-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(102, 252, 241, 0.25);
}

.input-wrapper .form-control::placeholder {
    color: var(--light-color);
    opacity: 0.7;
}

/* Additional Functions */
.function-checkbox-wrapper {
    position: relative;
    height: 100%;
}

.function-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.function-checkbox + label {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--dark-light-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.function-checkbox:checked + label {
    background-color: rgba(102, 252, 241, 0.05);
    border: 1px solid var(--primary-color);
}

.function-checkbox + label i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.function-checkbox + label span {
    color: var(--white-color);
    font-size: 0.9rem;
}

/* Server Options */
.server-option {
    background-color: var(--dark-light-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.server-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.server-option.selected {
    border: 2px solid var(--primary-color);
    background-color: rgba(102, 252, 241, 0.05);
}

.server-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.server-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 15px;
    text-align: center;
}

.server-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.server-details p {
    color: var(--light-color);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.server-details p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.server-price {
    text-align: center;
    background-color: rgba(102, 252, 241, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.server-price span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Final Price */
.price-actions {
    margin-bottom: 30px;
}

.calculate-btn, .ease-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
}

.calculate-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.calculate-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.ease-btn {
    background-color: var(--dark-light-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.ease-btn:hover {
    background-color: rgba(102, 252, 241, 0.1);
    transform: translateY(-5px);
}

.calculate-btn i, .ease-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.price-display {
    background-color: var(--dark-light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: 20px;
}

.price-loader {
    padding: 20px;
    text-align: center;
    color: var(--light-color);
}

.price-loader .spinner-border {
    width: 3rem;
    height: 3rem;
    margin-bottom: 15px;
}

.price-result {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.price-result .currency {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 5px;
    font-weight: 600;
}

.price-result .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.price-result .amount.price-updated {
    color: var(--primary-color);
    transform: scale(1.1);
}

.price-note {
    color: var(--light-color);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.price-cta {
    text-align: center;
}

.price-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
}

.price-cta .btn i {
    margin-right: 8px;
}

/* How It Works */
.process-card {
    background-color: var(--dark-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(102, 252, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--light-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-content i.bi-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(102, 252, 241, 0.1);
}

.testimonial-content p {
    color: var(--light-color);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding-top: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: rgba(102, 252, 241, 0.05);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-item {
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
    flex: 1;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--light-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(102, 252, 241, 0.05);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.toast-message {
    font-size: 0.95rem;
}

/* Custom Grid */
.col-lg-2-4 {
    width: 20%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 33.333333%;
    }
}

@media (max-width: 767.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .calculator-wrapper {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    #calculator-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .calculator-wrapper {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .price-result .amount {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    #calculator-hero {
        padding: 150px 0 80px;
    }
    
    #calculator-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .calculator-wrapper {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .website-type-card, .server-option {
        padding: 20px;
    }
    
    .calculate-btn, .ease-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 5px;
    }
    
    .price-result .currency {
        font-size: 1.5rem;
    }
    
    .price-result .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    #calculator-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .calculator-wrapper {
        padding: 15px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .website-type-card h3, .server-option h3 {
        font-size: 1.1rem;
    }
    
    .calculate-btn, .ease-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        margin: 0 3px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .price-result .currency {
        font-size: 1.3rem;
    }
    
    .price-result .amount {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}