/* Creative Design Variation */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #EBE8E7 0%, #f5f2f1 50%, #EBE8E7 100%);
    color: #11365C;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(42, 172, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(17, 54, 92, 0.08) 0%, transparent 50%);
    will-change: transform;
}

/* Header Styles */
.main-header {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 180px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 172, 173, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.text-reveal {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.text-reveal.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.text-reveal:first-child {
    background: linear-gradient(135deg, #2AACAD 0%, #11365C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-reveal.delay-1 {
    color: #11365C;
    transition-delay: 0.2s;
}

.tagline {
    font-size: 1.2rem;
    color: #11365C;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0.8;
        transform: translate3d(0, 0, 0);
    }
}

/* Products Showcase */
.products-showcase {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #11365C;
}

.title-accent {
    color: #2AACAD;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2AACAD 0%, transparent 100%);
    border-radius: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Modern Product Cards */
.product-card-modern {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(42, 172, 173, 0.1);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(42, 172, 173, 0.1) 100%);
    border: 1px solid rgba(42, 172, 173, 0.2);
}

.card-content {
    position: relative;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.product-icon {
    position: relative;
    align-self: center;
    margin-bottom: 2rem;
}

.product-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    box-shadow: 0 8px 32px rgba(42, 172, 173, 0.15);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #2AACAD;
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #11365C;
    margin-bottom: 1rem;
    text-align: center;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-headline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2AACAD;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

.product-description {
    font-size: 1rem;
    color: #11365C;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
    text-align: center;
    flex: 1;
}

/* Call-to-Action Buttons */
.card-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2AACAD 0%, #11365C 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(42, 172, 173, 0.3);
}

.cta-button.primary:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 30px rgba(42, 172, 173, 0.4);
}

.cta-button.secondary {
    background: rgba(42, 172, 173, 0.1);
    color: #11365C;
    border: 1px solid rgba(42, 172, 173, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(42, 172, 173, 0.2);
    border-color: #2AACAD;
    transform: translate3d(0, -2px, 0);
}

/* Card Overlay Effect */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(42, 172, 173, 0.05) 0%, 
        rgba(17, 54, 92, 0.1) 100%);
    opacity: 0;
    pointer-events: none;
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #2AACAD;
    border-radius: 50%;
    opacity: 0.4;
    will-change: transform;
    animation: float 20s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { 
        transform: translate3d(0, 0, 0);
        opacity: 0.2;
    }
    50% { 
        transform: translate3d(0, -30px, 0);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card-modern {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .company-name {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-modern {
        height: 400px;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 120px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card-modern {
        height: 380px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}