/**
 * WYZ Digital Custom Styles
 * Additional component and module styles for Elementor integration
 *
 * @package WYZ_Digital
 * @since 1.0.0
 */

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(15, 63, 76, 0.05);
    padding: 20px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.main-navigation {
    flex-grow: 1;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    justify-content: center;
}

.main-navigation a {
    color: var(--wyz-primary-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--wyz-dark-orange);
}

.header-cta {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-navigation,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    padding-top: 80px;
    padding-bottom: 40px;
}

.site-footer h3,
.site-footer h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: var(--wyz-dark-orange);
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */

.wyz-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--wyz-ai-mist) 0%, #FFFFFF 100%);
}

.wyz-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wyz-hero-text h1 {
    margin-bottom: 24px;
    color: var(--wyz-neural-teal);
}

.wyz-hero-text .hero-subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: var(--wyz-secondary-text);
    margin-bottom: 32px;
}

.wyz-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wyz-hero-image {
    position: relative;
}

.wyz-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(15, 63, 76, 0.15);
}

@media (max-width: 768px) {
    .wyz-hero {
        padding: 80px 0;
    }
    
    .wyz-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wyz-hero-cta {
        flex-direction: column;
    }
    
    .wyz-hero-cta .wyz-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Social Proof Bar
   ========================================================================== */

.wyz-social-proof {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--wyz-soft-slate);
}

.wyz-social-proof-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wyz-m2-text);
    margin-bottom: 32px;
}

.wyz-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wyz-logo-grid img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.wyz-logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==========================================================================
   Feature Grid
   ========================================================================== */

.wyz-feature-grid {
    padding: 100px 0;
}

.wyz-feature-grid-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wyz-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--wyz-dark-orange);
}

.wyz-feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--wyz-neural-teal);
    margin-bottom: 16px;
}

.wyz-feature-description {
    color: var(--wyz-secondary-text);
    line-height: 1.7;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */

.wyz-product-grid {
    padding: 100px 0;
    background-color: var(--wyz-ai-mist);
}

.wyz-product-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--wyz-dark-orange);
}

.wyz-product-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--wyz-neural-teal);
    margin-bottom: 16px;
}

.wyz-product-card-description {
    color: var(--wyz-secondary-text);
    margin-bottom: 24px;
}

.wyz-product-card-link {
    color: var(--wyz-dark-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.wyz-product-card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.wyz-testimonial-section {
    padding: 100px 0;
}

.wyz-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.wyz-testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wyz-primary-text);
    margin-bottom: 24px;
    font-style: italic;
}

.wyz-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wyz-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.wyz-testimonial-info {
    flex: 1;
}

.wyz-testimonial-name {
    font-weight: 600;
    color: var(--wyz-neural-teal);
    margin-bottom: 4px;
}

.wyz-testimonial-title {
    font-size: 14px;
    color: var(--wyz-m2-text);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.wyz-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--wyz-neural-teal) 0%, var(--wyz-deep-signal-blue) 100%);
    color: #FFFFFF;
    text-align: center;
}

.wyz-cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 24px;
}

.wyz-cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.wyz-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .wyz-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wyz-cta-buttons .wyz-btn {
        width: 100%;
        max-width: 400px;
    }
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.wyz-form {
    max-width: 600px;
    margin: 0 auto;
}

.wyz-form-field {
    margin-bottom: 24px;
}

.wyz-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--wyz-primary-text);
    margin-bottom: 8px;
}

.wyz-form-input,
.wyz-form-textarea,
.wyz-form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--wyz-soft-slate);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.wyz-form-input:focus,
.wyz-form-textarea:focus,
.wyz-form-select:focus {
    border-color: var(--wyz-neural-teal);
    box-shadow: 0 0 0 3px rgba(15, 63, 76, 0.1);
    outline: none;
}

.wyz-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.wyz-form-submit {
    text-align: center;
}

/* ==========================================================================
   Image Placeholders
   ========================================================================== */

.wyz-placeholder {
    background-color: var(--wyz-soft-slate);
    border: 2px dashed var(--wyz-neural-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--wyz-neural-teal);
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

.wyz-placeholder--hero {
    min-height: 500px;
}

.wyz-placeholder--icon {
    min-height: 100px;
    width: 100px;
    border-radius: 50%;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.wyz-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.wyz-section-subtitle {
    font-size: 20px;
    color: var(--wyz-secondary-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wyz-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--wyz-dark-orange);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.wyz-divider {
    height: 1px;
    background-color: var(--wyz-soft-slate);
    margin: 60px 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wyz-animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

@media (max-width: 768px) {
    .wyz-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .wyz-hide-desktop {
        display: none !important;
    }
}
