/* Royal Time - Prosess Page Styles */
/* Built on salg page design foundation with 6-step process layout */

/* ===== HERO SECTION ===== */
.prosess-hero {
    background: linear-gradient(135deg, #0b1d3c 0%, #1a3a5c 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.prosess-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 168, 218, 0.1) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== MAIN CONTENT ===== */
.prosess-content {
    position: relative;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1d3c;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 16px;
    color: #555555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Step number overlay */
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(74, 168, 218, 0.15);
    z-index: 0;
    transition: all 0.3s ease;
}

.process-step:hover::before {
    color: rgba(74, 168, 218, 0.25);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 168, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #4a90e2;
    font-size: 32px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-icon {
    background: #4a90e2;
    color: #ffffff;
    transform: scale(1.1) rotateY(180deg);
}

.step-icon i {
    font-size: 32px;
}

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

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #0b1d3c;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 20px;
}

/* Step features list */
.step-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.step-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555555;
}

.step-feature i {
    color: #4a90e2;
    margin-right: 10px;
    font-size: 12px;
}

/* ===== PRINCIPLES SECTION ===== */
.principles-section {
    background: linear-gradient(135deg, #0b1d3c 0%, #1a3a5c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.principles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/patterns/Royal_Time_pattern_TRANSPARENT-01.png');
    background-repeat: repeat;
    opacity: 0.05;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(30px); }
}

.principles-section .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.principles-section .section-title {
    color: #ffffff;
}

.principles-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.principle-item:hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.15);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: rgba(77, 168, 218, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4DA8DA;
    border: 1px solid rgba(77, 168, 218, 0.3);
}

.principle-icon i {
    font-size: 24px;
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.principle-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #4DA8DA 0%, #0b1d3c 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaFloat 10s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(-5deg); opacity: 0.5; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #0b1d3c;
    border-color: #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .prosess-hero {
        padding: 100px 0 60px;
    }
    
    .process-section,
    .principles-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .process-step,
    .principle-item {
        padding: 25px 20px;
    }
    
    .step-icon,
    .principle-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i,
    .principle-icon i {
        font-size: 20px;
    }
}