/* Balloon Bot Vending Machine Styles */
/* Primary Color: #883E74 */

:root {
    --primary-color: #883E74;
    --primary-dark: #6d2f5a;
    --primary-light: #a85d8f;
    --secondary-color: #f8f6f7;
    --accent-color: #e8dce2;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: rgba(136, 62, 116, 0.15);
    --shadow-hover: rgba(136, 62, 116, 0.25);
}

/* Container Styles */
.balloon-bot-container {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Hero Section */
.balloon-bot-hero {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 260px 0;
    position: relative;
    overflow: hidden;
}

.balloon-bot-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23883E74" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23883E74" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    /*box-shadow: 0 20px 40px var(--shadow);*/
}

/* Features Section */
.balloon-bot-features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Specifications Section */
.balloon-bot-specs {
    padding: 100px 0;
    background: var(--secondary-color);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specs-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
}

.spec-group {
    margin-bottom: 40px;
}

.spec-group h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spec-group ul {
    list-style: none;
    padding: 0;
}

.spec-group li {
    padding: 10px 0;
    border-bottom: 1px solid var(--accent-color);
    color: var(--text-light);
}

.spec-group li:last-child {
    border-bottom: none;
}

.spec-group li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Video Demo Section */
.balloon-bot-video {
    padding: 100px 0;
    background: var(--white);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    border-radius: 15px;
}

.video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    background: none !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.play-button:hover {
    transform: scale(1.15);
}

.play-button svg {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Video Modal/Popup Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-description h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.video-description > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px var(--shadow);
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Applications Section */
.balloon-bot-applications {
    padding: 100px 0;
    background: var(--secondary-color);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.application-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.application-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.application-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 20px 20px 10px;
}

.application-card p {
    color: var(--text-light);
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* FAQ Section */
.balloon-bot-faq {
    padding: 100px 0;
    background: var(--secondary-color);
}

/* ROI Section */
.balloon-bot-roi {
    padding: 100px 0;
    background: var(--white);
}

.roi-content {
    max-width: 1400px;
    margin: 0 auto;
}

.roi-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 15px 35px var(--shadow);
}

.roi-machine {
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-image {
    width: 120px;
    height: auto;
    filter: brightness(1.1);
}

.roi-intro h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.roi-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.investment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.investment-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.investment-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFD700;
}

.roi-table-wrapper {
    margin-bottom: 30px;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.roi-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    min-width: 800px;
}

.roi-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.header-cell {
    padding: 20px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cell:last-child {
    border-right: none;
}

.scenario-header {
    background: rgba(255, 255, 255, 0.1);
}

.roi-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--accent-color);
    transition: background 0.3s ease;
}

.roi-table-row:hover {
    background: var(--secondary-color);
}

.roi-table-row:last-child {
    border-bottom: none;
}

.cell {
    padding: 18px 15px;
    text-align: center;
    font-weight: 500;
    border-right: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell:last-child {
    border-right: none;
}

.scenario-cell {
    font-weight: 700;
    color: var(--primary-color);
    background: var(--secondary-color);
}

.profit {
    font-weight: 700;
    color: #2E7D32;
}

.roi-cell {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.roi-unit {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.scenario-1 {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1) 0%, transparent 100%);
}

.scenario-2 {
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.1) 0%, transparent 100%);
}

.scenario-3 {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
}

.scenario-4 {
    background: linear-gradient(90deg, rgba(136, 62, 116, 0.1) 0%, transparent 100%);
}

.roi-note {
    text-align: center;
    margin-top: 30px;
}

.roi-note p {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 10px 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.balloon-bot-contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-feature .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-feature p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Contact Form - Fluent Forms Integration */
.fluent-form-wrapper {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Fluent Forms Custom Styling */
.fluent-form-wrapper .fluentform {
    background: transparent !important;
}

.fluent-form-wrapper .ff-el-group {
    margin-bottom: 25px;
}

.fluent-form-wrapper .ff-el-form-control {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
    background: var(--white) !important;
    box-shadow: none !important;
}

.fluent-form-wrapper .ff-el-form-control:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(136, 62, 116, 0.1) !important;
}

.fluent-form-wrapper .ff-el-input--label label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    font-size: 1rem !important;
}

.fluent-form-wrapper .ff-btn-submit {
    width: 100% !important;
    padding: 15px !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px var(--shadow) !important;
    text-transform: none !important;
}

.fluent-form-wrapper .ff-btn-submit:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px var(--shadow-hover) !important;
}

.fluent-form-wrapper .ff-btn-submit:active {
    transform: translateY(0) !important;
}

/* Fluent Forms Validation Messages */
.fluent-form-wrapper .ff-el-is-error .ff-el-form-control {
    border-color: #f44336 !important;
}

.fluent-form-wrapper .error {
    color: #f44336 !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

.fluent-form-wrapper .ff-message-success {
    background: #4CAF50 !important;
    color: white !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-top: 20px !important;
}

/* Fluent Forms Select Dropdown */
.fluent-form-wrapper .ff-el-form-control select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px 12px !important;
    padding-right: 40px !important;
}

/* Fluent Forms Checkbox and Radio */
.fluent-form-wrapper .ff-el-form-check-input[type="checkbox"],
.fluent-form-wrapper .ff-el-form-check-input[type="radio"] {
    width: auto !important;
    margin-right: 8px !important;
    accent-color: var(--primary-color) !important;
}

.fluent-form-wrapper .ff-el-form-check-label {
    font-weight: normal !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
}

/* Fluent Forms Textarea */
.fluent-form-wrapper textarea.ff-el-form-control {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Fluent Forms Loading State */
.fluent-form-wrapper .ff-btn-submit.ff-working {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

.fluent-form-wrapper .ff-btn-submit.ff-working::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid transparent !important;
    border-top: 2px solid var(--white) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-description h3 {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .roi-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .roi-intro h3 {
        font-size: 2rem;
    }
    
    .roi-subtitle {
        font-size: 1.2rem;
    }
    
    .investment-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .roi-table-wrapper {
        margin: 0 -20px 30px -20px;
    }
    
    .roi-table {
        min-width: 600px;
    }
    
    .header-cell,
    .cell {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .roi-cell {
        font-size: 0.95rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .balloon-bot-hero {
        padding: 60px 0;
    }
    
    .balloon-bot-features,
    .balloon-bot-specs,
    .balloon-bot-applications,
    .balloon-bot-faq,
    .balloon-bot-contact,
    .balloon-bot-roi,
    .balloon-bot-testimonials {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .fluent-form-wrapper {
        padding: 30px 20px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .roi-header {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .roi-intro h3 {
        font-size: 1.8rem;
    }
    
    .roi-subtitle {
        font-size: 1.1rem;
    }
    
    .machine-image {
        width: 80px;
    }
    
    .roi-table-wrapper {
        margin: 0 -15px 30px -15px;
    }
    
    .roi-table {
        min-width: 500px;
    }
    
    .header-cell,
    .cell {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
    
    .roi-cell {
        font-size: 0.85rem;
    }
    
    .investment-value {
        font-size: 1.1rem;
    }
}

/* Customer Testimonials Section */
.balloon-bot-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(136, 62, 116, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 62, 116, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(136, 62, 116, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #883E74;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
