/* Coming Soon Page Specific Styles */
.coming-soon-body {
    background: linear-gradient(160deg, #f5fff2 0%, #eef9ff 45%, #fffaf0 100%);
    color: #1f3b2d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.coming-soon-body .navbar {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.14);
    box-shadow: 0 8px 24px rgba(59, 95, 78, 0.08);
}

.coming-soon-body .logo {
    color: #2E7D32;
}

/* Background Animation */
.coming-soon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(127, 211, 159, 0.35), transparent 36%),
        radial-gradient(circle at 90% 80%, rgba(141, 208, 255, 0.34), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255, 213, 143, 0.26), transparent 45%);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.45;
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: #7FD39F;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: #8DD0FF;
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: #FFD58F;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-22px) scale(1.05); }
}

/* Main Content */
.coming-soon-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: 24px;
    padding: 60px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px -30px rgba(63, 100, 84, 0.35);
    animation: cardAppear 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.35);
    color: #1F7A3F;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1F3B2D;
}

.animated-gradient-text {
    background: linear-gradient(to right, #4CAF50, #81C784, #4CAF50);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.coming-soon-content .subtitle {
    font-size: 18px;
    color: #486458;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Cards */
.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.action-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(46, 125, 50, 0.14);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(46, 125, 50, 0.26);
    box-shadow: 0 14px 28px rgba(55, 95, 77, 0.12);
}

.action-icon {
    width: 64px;
    height: 64px;
    background: rgba(76, 175, 80, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2E7D32;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F3B2D;
}

.action-card p {
    font-size: 14px;
    color: #4F655B;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: none;
    font-size: 16px;
}

.glow-btn {
    background: linear-gradient(135deg, #2E7D32 0%, #3FAF56 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.glow-btn:hover {
    background: linear-gradient(135deg, #2B7330 0%, #37974A 100%);
    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.34);
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.38);
}

.btn-outline:hover {
    background: #f2fbf4;
    border-color: #2E7D32;
}

/* Modal specific for coming soon */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 40, 32, 0.32);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    max-width: 500px;
    width: 90%;
    padding: 40px;
}

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-header p {
    color: #486458;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #2F5142;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #2F5142;
    text-align: left;
    font-weight: 500;
}

.contact-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(46, 125, 50, 0.24);
    border-radius: 8px;
    color: #1F3B2D;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-color: #4CAF50;
    background: #FAFFFB;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.16);
}

.form-feedback {
    min-height: 24px;
    margin: -4px 0 16px;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
}

.form-feedback.is-success {
    color: #1f7a3f;
}

.form-feedback.is-error {
    color: #c62828;
}

/* Minimalist Footer */
.minimalist-footer {
    padding: 20px;
    border-top: 1px solid rgba(46, 125, 50, 0.12);
}

.minimalist-footer p {
    color: #5F7F70;
    font-size: 14px;
}

@media (max-width: 768px) {
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .glass-card {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 32px;
    }
}
