/* 
aryma.css - Aryma Page Styles
*/

/* ============================================
   HERO SECTION
   ============================================ */
.aryma-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.aryma-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.aryma-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #75b7d3, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 3rem 0;
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-card h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-card .lead {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #295f79, #75b7d3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(41, 95, 121, 0.3);
}

.step-content h3 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #295f79, #75b7d3);
    margin-top: 30px;
    border-radius: 2px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-title {
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    color: #295f79;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-decoration: none;
    color: inherit;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: auto;
}

.feature-item {
    overflow: hidden;
}

.feature-item h3 {
    color: #295f79;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.feature-item p {
    color: #666666;
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    text-align: left;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */

.tech-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    margin: 3rem 0;
    border-radius: 20px;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #75b7d3;
    box-shadow: 0 10px 30px rgba(41, 95, 121, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tech-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #295f79;
    border: 2px solid #295f79;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #295f79;
    color: white;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.floating-cards {
    position: relative;
    width: 250px;
    height: 250px;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #295f79, #75b7d3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(41, 95, 121, 0.3);
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard1 4s ease-in-out infinite;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    right: 10px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #75b7d3, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .tech-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 3rem 0;
    }
    
    .tech-cards {
        padding: 0 1rem;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .step {
        max-width: 300px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .aryma-hero {
        padding: 4rem 1rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-section {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
}
