/* ============================================
   MODERN HERO SECTION
   Inspired by shadcn/ui design patterns
   ============================================ */

/* Hero Container */
.hero-modern {
    position: relative;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(229, 231, 235, 0.55) 100%), 
                      url('../img/connect%201.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem 8rem;
    overflow: hidden;
    margin-top: 65px;
}

/* Background overlay for better text readability */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(229, 231, 235, 0.35) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* ============================================
   BADGE ANNOUNCEMENT
   ============================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.hero-badge:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-text {
    color: #6b7280;
    font-weight: 500;
}

.badge-text.badge-red {
    color: #ef4444;
}

.badge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.badge-link:hover {
    gap: 0.5rem;
}

.arrow-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.badge-link:hover .arrow-icon {
    transform: translateX(2px);
}

/* ============================================
   HERO TITLE WITH GRADIENT
   ============================================ */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    max-width: 900px;
    color: #000000;
    position: relative;
}

.hero-title .text-blue {
    color: #3b82f6;
}

/* Add subtle text shadow for depth */
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
}

/* ============================================
   HERO DESCRIPTION
   ============================================ */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover .btn-icon {
    transform: rotate(90deg);
}

/* Secondary Button */
.btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover .btn-icon {
    transform: scale(1.1);
}

/* ============================================
   HERO MOCKUP / IMAGE
   ============================================ */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.mockup-frame {
    background: rgba(243, 244, 246, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.mockup-frame:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.mockup-content {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */
.glow-effect {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.glow-top {
    top: -128px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 256px;
}

.glow-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(2.5);
    width: 100%;
    height: 256px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.3) 10%, rgba(59, 130, 246, 0) 60%);
}

.glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 256px;
}

.glow-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(2);
    width: 100%;
    height: 256px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.2) 10%, rgba(16, 185, 129, 0) 60%);
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: 50%;
    left: 10%;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.delay-100,
.delay-200,
.delay-300,
.delay-500 {
    animation: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
    .hero-modern {
        padding: 6rem 2rem 6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .hero-modern {
        padding: 5rem 1.5rem 4rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 0.875rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .decoration-circle {
        opacity: 0.03;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .circle-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-modern {
        padding: 4rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .btn-hero {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in,
    .decoration-circle,
    .btn-hero,
    .mockup-frame {
        animation: none;
        transition: none;
    }
}

/* Focus States */
.btn-hero:focus-visible,
.badge-link:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.video-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.video-text-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.video-text-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-item:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.highlight-item i {
    font-size: 1.125rem;
    color: #10b981;
    flex-shrink: 0;
}

.highlight-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}

.video-cta-text {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0;
}

.video-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #e5e7eb;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000000;
}

@media screen and (max-width: 1024px) {
    .video-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .video-wrapper {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 3rem 1.5rem;
    }
    
    .video-content-grid {
        gap: 2rem;
    }
    
    .video-text-content h3 {
        font-size: 1.5rem;
    }
    
    .video-text-content p {
        font-size: 0.9375rem;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .highlight-item {
        padding: 0.875rem 1rem;
    }
    
    .highlight-item span {
        font-size: 0.875rem;
    }
    
    .video-wrapper {
        border-radius: 1rem;
        max-width: 100%;
        border-width: 2px;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        padding: 2.5rem 1rem;
    }
    
    .video-text-content h3 {
        font-size: 1.375rem;
    }
    
    .video-text-content p {
        font-size: 0.875rem;
    }
    
    .highlight-item {
        padding: 0.75rem 0.875rem;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.8125rem;
    }
    
    .video-cta-text {
        font-size: 0.9375rem;
    }
}
