/* Contact Sales Page Styles */
/* ===== ACCESSIBILITY UTILITIES ===== */

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4a90e2;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== HERO SECTION ===== */

.hero-section {
    padding: 60px 20px;
    background-color: #F0FAFF;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00d9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.hero-media {
    margin-top: 40px;
}

.product-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background-color: #000;
}

/* Call to Action */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding: 20px;
    background-color: #f0f4ff;
    border-radius: 8px;
}

.cta-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.cta-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta-phone {
    font-size: 16px;
    font-weight: 700;
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.cta-phone:hover {
    color: #357abd;
    text-decoration: underline;
}

.cta-phone:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Trust & Testimonials Section */
.trust-testimonials-section {
    padding: 80px 20px;
}

.logo-carousel-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.carousel-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px 0;
    color: #1a1a1a;
}

.logo-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    min-width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    right: -20px;
    height: 30px;
    width: 1px;
    background-color: #d0d0d0;
}

.carousel-item img {
    width: 138px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.carousel-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    position: relative;
    margin-bottom: 40px;
}

.testimonial-item {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 1;
}

.testimonial-content {
    background-color: #f5f0e8;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.author-location {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Pagination Controls */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background-color: #b0b0b0;
}

.pagination-dot:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 3px;
}

.pagination-dot.active {
    background-color: #4a90e2;
}

/* Right Column */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-form-container {
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Form required field indicator */
.form-required-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-help-text {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    display: none;
}

.form-error {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    display: none;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form textarea {
    padding: 12px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-form input[type="text"]:hover,
.hero-form input[type="email"]:hover,
.hero-form input[type="tel"]:hover,
.hero-form textarea:hover {
    border-color: #b0b0b0;
}

.hero-form input[type="text"]:focus,
.hero-form input[type="email"]:focus,
.hero-form input[type="tel"]:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.hero-form textarea {
    resize: vertical;
    font-family: inherit;
}

.checkbox-group {
    flex-direction: column;
    gap: 16px;
}

.checkbox-group legend {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.checkbox-item input[type="checkbox"]:hover {
    border-color: #4a90e2;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #04cfcf;
    border-color: #04cfcf;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" viewBox="0 0 14 11" fill="none"><path d="M1 5L5.5 9.5L13 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}

.checkbox-item input[type="checkbox"]:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

.checkbox-item label {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    margin: 0;
    line-height: 1.5;
}

.submit-button {
    padding: 10px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}

.submit-button:hover {
    background-color: #357abd;
    border-color: #357abd;
}

.submit-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.submit-button:active {
    transform: scale(0.98);
}

.form-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.form-note-avatar {
    width: 95px;
    height: 35px;
    flex-shrink: 0;
    object-fit: cover;
}

.form-note p {
    font-size: 13px;
    color: #666;
    margin: 0;
    text-align: left;
}

/* Form Message (Success/Error) */
.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .hero-form-container {
        padding: 24px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .carousel-title {
        font-size: 24px;
        margin: 0 0 40px 0;
    }
    
    .carousel-item {
        min-width: 120px;
    }
    
    .carousel-track {
        gap: 24px;
    }
    
    .testimonial-item.active {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .pagination-dot {
        width: 12px;
        height: 12px;
    }
}
