/**
 * Frontend Styles for HEMOTAG Custom Blocks
 */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .btn-primary {
    background-color: #2E5DAB;
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-primary:hover {
    background-color: rgba(46, 93, 171, 0.9);
    transform: scale(1.05);
}

.hero-section .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-outline:hover {
    background-color: white;
    color: #2E5DAB;
    transform: scale(1.05);
}

.hero-section .btn-secondary {
    background-color: white;
    color: #2E5DAB;
    border: 2px solid #2E5DAB;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-section .btn-secondary:hover {
    background-color: #2E5DAB;
    color: white;
    transform: scale(1.05);
}

/* Scalable Value Section */
.scalable-value-section .stat-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scalable-value-section .stat-card:hover {
    transform: scale(1.05);
}

.scalable-value-section .text-primary {
    color: #2E5DAB;
}

/* Testimonial Section */
.testimonial-section blockquote {
    border-left: 4px solid #2E5DAB;
    padding-left: 20px;
    margin: 0;
    font-style: italic;
}

.testimonial-section .bg-white {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    transform: scale(1.2);
}

.testimonial-dot.bg-primary {
    background-color: #2E5DAB !important;
}

/* Workflow Section */
.workflow-section .bg-primary {
    background-color: #2E5DAB;
}

.workflow-section .timeline-line {
    background-color: #2E5DAB;
}

.workflow-section .step-circle {
    background-color: #2E5DAB;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.workflow-section .step-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Enterprise Features Section */
.enterprise-features-section .stat-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.enterprise-features-section .stat-card:hover {
    transform: scale(1.05);
}

.enterprise-features-section .text-primary {
    color: #2E5DAB;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F5FBFE;
}

.contact-form-section .bg-white {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-section input,
.contact-form-section textarea {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #2E5DAB;
    box-shadow: 0 0 0 3px rgba(46, 93, 171, 0.1);
}

.contact-form-section .btn-primary {
    background-color: #2E5DAB;
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-section .btn-primary:hover {
    background-color: rgba(46, 93, 171, 0.9);
    transform: scale(1.05);
}

/* Logo Grid Block */
.hemotag-logo-grid__rows {
    max-width: 1200px;
    margin: 0 auto;
}

.hemotag-logo-grid__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hemotag-logo-grid__item {
    flex: 0 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hemotag-logo-grid__item:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hemotag-logo-grid__item img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

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

/* Two Column Block */
.hemotag-two-column {
    padding: 4rem 1rem;
}

.hemotag-two-column__container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hemotag-two-column__left {
    flex: 1 1 500px;
    min-width: 300px;
    max-width: 600px;
}

.hemotag-two-column__title {
    color: #1e293b;
    font-family: 'Museo Sans', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hemotag-two-column__content {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* .hemotag-two-column__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #2E5DAB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.hemotag-two-column__feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hemotag-two-column__icon {
    color: #2E5DAB;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.hemotag-two-column__feature-text {
    flex: 1;
}

.hemotag-two-column__feature-title {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.hemotag-two-column__feature-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

/* .hemotag-two-column__right {
    flex: 1 1 500px;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.hemotag-two-column__right img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hemotag-two-column__right img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
} */

/* Responsive Design for New Blocks */
@media (max-width: 768px) {
    .hemotag-logo-grid__title {
        font-size: 2rem;
    }
    
    .hemotag-logo-grid__subtitle {
        font-size: 1.125rem;
    }
    
    .hemotag-logo-grid__row {
        gap: 2rem;
    }
    
    .hemotag-logo-grid__item img {
        max-height: 60px;
        max-width: 120px;
    }
    
    .hemotag-two-column__title {
        font-size: 2rem;
    }
    
    .hemotag-two-column__content {
        font-size: 1.125rem;
    }
    
    .hemotag-two-column__container {
        gap: 2rem;
    }
    
    .hemotag-two-column__feature {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hemotag-logo-grid,
    .hemotag-two-column {
        padding: 2rem 1rem;
    }
    
    .hemotag-logo-grid__row {
        gap: 1.5rem;
    }
    
    .hemotag-logo-grid__item img {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .hero-section .btn-primary,
    .hero-section .btn-outline,
    .contact-form-section .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .workflow-section .step-card {
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Utility Classes */
.text-primary {
    color: #2E5DAB;
}

.bg-primary {
    background-color: #2E5DAB;
}

.font-museo {
    font-family: 'Museo Sans', Georgia, serif;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
} 

/* Product Benefits Block */
.hemotag-product-benefits {
    padding: 4rem 1rem;
}

.hemotag-product-benefits__left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hemotag-product-benefits__left .bg-white {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hemotag-product-benefits__left .bg-white:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hemotag-product-benefits__left img {
    border-radius: 0.75rem;
    width: 100%;
    height: auto;
}

.hemotag-product-benefits__right h2 {
    color: #1e293b;
    font-family: 'Museo Sans', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hemotag-product-benefits__right p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hemotag-product-benefits__right .space-y-6 > div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2E5DAB;
}

.hemotag-product-benefits__right .space-y-6 > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hemotag-product-benefits__right .w-12 {
    background: #2E5DAB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
}

.hemotag-product-benefits__right .w-12 svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hemotag-product-benefits__right h3 {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hemotag-product-benefits__right p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Product Benefits */
@media (max-width: 768px) {
    .hemotag-product-benefits__right h2 {
        font-size: 2.5rem;
    }
    
    .hemotag-product-benefits__right p {
        font-size: 1.125rem;
    }
    
    .hemotag-product-benefits__right .space-y-6 > div {
        padding: 1rem;
    }
    
    .hemotag-product-benefits__right .w-12 {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hemotag-product-benefits__right .w-12 svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hemotag-product-benefits {
        padding: 2rem 1rem;
    }
    
    .hemotag-product-benefits__right h2 {
        font-size: 2rem;
    }
    
    .hemotag-product-benefits__right p {
        font-size: 1rem;
    }
    
    .hemotag-product-benefits__left .bg-white {
        padding: 1rem;
    }
} 