﻿:root {
    --primary: #ff4d6d;
    --secondary: #ff758f;
    --dark: #2b2d42;
    --light: #f8f9fa;
}

body {
    margin: 0;
    font-family: 'Inter', 'Pyidaungsu', sans-serif;
    background: var(--light);
    color: var(--dark);
}

/* Hero Section */
/* Hero Section ကို ပိုမိုရင့်ပြီး ထင်ရှားစေရန် ပြင်ဆင်ထားသော Style */
.hero {
    text-align: center;
    padding: 120px 20px;
    /* အရောင်ကို ပိုရင့်သော Rose & Vibrant Pink Gradient သို့ ပြောင်းလဲထားသည် */
    background: linear-gradient(135deg, #e91e63 0%, #ff4d6d 50%, #ff758f 100%);
    clip-path: ellipse(150% 100% at 50% 0%);
    color: #fff;
    /* စာသားများ ပိုပေါ်လွင်စေရန် Shadow အနည်းငယ် ထည့်ထားသည် */
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

    .hero h1 {
        font-size: 3.5rem; /* စာလုံးကို နည်းနည်း ထပ်ကြီးလိုက်ပါတယ် */
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 35px;
        font-weight: 500;
        opacity: 1; /* စာသားကြည်လင်အောင် အပြည့်ထားလိုက်ပါသည် */
    }

/* Button အဖြူရောင်ကိုလည်း ပိုထင်းအောင် Shadow တိုးထားသည် */
.btn-primary {
    background: #fff;
    color: #e91e63;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.cta-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    display: inline-block;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.btn {
    padding: 15px 35px;
    margin: 10px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 77, 109, 0.4);
    }

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

    .btn-secondary:hover {
        background: #fff;
        color: var(--primary);
    }

/* 3-Step Process Section */
.steps-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    font-weight: bold;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px 40px;
    background: #fff;
}

.feature-item {
    padding: 25px;
    border-radius: 15px;
    background: var(--light);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    text-align: left;
}

    .feature-item:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--dark);
    color: #fff;
}

/* Responsive */
@@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}
