/* ========== CLOUD JOURNEY PAGES SPECIFIC STYLES ========== */
/* Same design, color, and font as Cloud Migration page */

/* Hero Section - Purple/Blue Gradient (Same as Cloud Migration) */
.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 60px 0;
}

.bg-light {
    background: #f8f9fa;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 600;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Two Columns Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Three Columns Layout */
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Four Columns Layout */
.four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d3436;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Step Cards */
.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 0.85rem;
}

/* AWS Service Badges */
.aws-service {
    background: #ff6b6b10;
    color: #ff6b6b;
    padding: 8px 15px;
    border-radius: 25px;
    display: inline-block;
    margin: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.aws-service:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Services Grid (for AI services list) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Service Card (for AI services) */
.service-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 28px;
    min-width: 50px;
    text-align: center;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2d3436;
    font-weight: 600;
}

.service-info p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.aws-badge {
    display: inline-block;
    background: #ff6b6b10;
    color: #ff6b6b;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 15px;
    margin-top: 8px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 1rem;
}

.btn-white {
    background: white;
    color: #ff6b6b;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .two-columns, .three-columns, .four-columns, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 40px 0;
    }
    .service-hero h1 {
        font-size: 1.8rem;
    }
    .service-hero p {
        font-size: 1rem;
    }
    .section {
        padding: 40px 0;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .two-columns, .three-columns, .four-columns, .services-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 20px;
    }
    .step-card {
        padding: 20px;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box h2 {
        font-size: 1.5rem;
    }
}
