/* =============================================
   ProWatchly Demo Request Page Styles
   ============================================= */

/* Demo Hero Section */
.demo-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 50%, var(--secondary-main) 100%);
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.demo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.demo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.demo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.demo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #4ade80, #88d9c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Main Section */
.demo-main {
    padding: 80px 2rem;
    background: #f8fffe;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Benefits Side */
.demo-benefits h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(26, 147, 111, 0.1);
}

.benefit-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(26, 147, 111, 0.1), rgba(136, 217, 193, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.demo-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    border-radius: 16px;
}

.demo-stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Form Side */
.demo-form-container {
    position: sticky;
    top: 100px;
}

.demo-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 147, 111, 0.1);
}

.demo-form-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    margin-bottom: 1.25rem;
}

.demo-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 4px rgba(26, 147, 111, 0.1);
}

.demo-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Deployment Options */
.deployment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.deployment-option {
    cursor: pointer;
}

.deployment-option input {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.option-icon {
    font-size: 1.5rem;
}

.option-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
}

.deployment-option input:checked + .option-box {
    border-color: var(--primary-main);
    background: rgba(26, 147, 111, 0.05);
}

.deployment-option input:checked + .option-box .option-text {
    color: var(--primary-main);
    font-weight: 600;
}

.deployment-option:hover .option-box {
    border-color: var(--primary-light);
}

/* Submit Button */
.demo-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 147, 111, 0.3);
}

.demo-submit-btn svg {
    transition: transform 0.3s ease;
}

.demo-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 1.25rem;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--primary-main);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Trust Section */
.trust-section {
    padding: 60px 2rem;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f8fffe;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.trust-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .demo-form-container {
        position: static;
    }
    
    .demo-hero h1 {
        font-size: 2.25rem;
    }
    
    .demo-info {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .demo-page {
        padding-top: 70px;
    }
    
    .demo-hero {
        padding: 2rem 1rem;
    }
    
    .demo-hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .demo-hero p {
        font-size: 0.95rem;
    }
    
    .demo-container {
        padding: 0 1rem 2rem;
        gap: 2rem;
    }
    
    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .deployment-options {
        grid-template-columns: 1fr;
    }
    
    .deployment-option {
        padding: 1rem;
    }
    
    .demo-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .demo-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        min-height: 52px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .submit-btn:active {
        transform: scale(0.98);
    }
    
    .trust-items {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

@media (max-width: 400px) {
    .demo-hero h1 {
        font-size: 1.5rem;
    }
    
    .demo-form-container {
        padding: 1.25rem;
    }
}

