@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    background-color: #f4f7f6;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden; 
    width: 100%;
}
a { text-decoration: none; transition: all 0.3s ease; }

/* ==========================================================================
   MAIN LAYOUT & TYPOGRAPHY
   ========================================================================== */
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding-bottom: 50px; }

.section-title {
    text-align: center;
    margin: 40px 0 20px 0;
    font-weight: 800;
    font-size: 24px;
    color: #2c3e50;
    text-transform: uppercase;
}

.top-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* ==========================================================================
   CARDS & FORMS
   ========================================================================== */
.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.info-card i { font-size: 40px; color: #555; margin-bottom: 15px; }
.info-card h2, .info-card h3 { font-weight: 800; text-transform: uppercase; margin-bottom: 20px; font-size: 20px; color: #333; }

.submit-btn {
    background: #ff9800;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.submit-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

.hidden { display: none !important; }

/* ==========================================================================
   EMAIL MOCKUP UI (For Email Sending Job)
   ========================================================================== */
.email-mockup {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #ddd;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.email-topbar {
    background: #f1f3f4;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.window-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}
.window-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    font-weight: 600;
    font-size: 13px;
    color: #444;
}

.email-content {
    padding: 0;
}

.email-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 5px 15px;
}
.email-row label {
    color: #666;
    font-size: 13px;
    width: 60px;
    margin: 0;
    font-weight: 600;
}
.email-input {
    flex: 1;
    border: none;
    padding: 10px 5px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.email-body-input {
    width: 100%;
    height: 250px;
    border: none;
    padding: 20px 15px;
    font-size: 14px;
    resize: none;
    outline: none;
    line-height: 1.6;
}

.email-footer {
    display: flex;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.email-send-btn {
    background: #0b57d0;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 15px;
}
.email-send-btn:hover { background: #0842a0; }

.email-tools {
    display: flex;
    gap: 15px;
    color: #5f6368;
    font-size: 16px;
    cursor: pointer;
}
.email-tools i:hover { color: #202124; }

.email-trash {
    margin-left: auto;
    color: #5f6368;
    font-size: 16px;
    cursor: pointer;
}
.email-trash i:hover { color: #d93025; }

/* ==========================================================================
   SMARTPHONE MOCKUP UI (For SMS Sending Job)
   ========================================================================== */
.phone-mockup {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border: 12px solid #2c3e50;
    border-radius: 36px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0 auto;
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 110px; height: 25px;
    background: #2c3e50;
    border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;
    z-index: 2;
}
.phone-header {
    background: #0084ff;
    color: #fff;
    padding: 35px 15px 15px;
    text-align: center; font-weight: 600; font-size: 16px;
}
.phone-body {
    padding: 20px 20px 30px 20px;
    background: #f4f7f6;
}
.phone-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd; border-radius: 20px;
    margin-bottom: 15px; font-family: inherit; font-size: 14px;
    background: #fff; outline: none;
}
.phone-input:focus { border-color: #0084ff; box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1); }
.phone-textarea { border-radius: 15px; resize: none; height: 120px; }
.phone-btn {
    background: #4caf50;
    color: #fff; width: 100%; padding: 16px; border: none; border-radius: 25px;
    font-weight: 700; font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: transform 0.2s;
}
.phone-btn:hover { background: #388e3c; transform: scale(1.02); }

/* ==========================================================================
   JOB GRID (High Contrast & Circular Icons)
   ========================================================================== */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px;
    margin-bottom: 50px;
    padding: 10px;
}

.job-card {
    background: #ffffff; 
    padding: 40px 25px; 
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.job-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); 
}

.job-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 50%;
    font-size: 32px; margin-bottom: 25px;
}

.job-card h3 { font-weight: 800; margin-bottom: 15px; text-transform: uppercase; font-size: 16px; color: #222; }
.job-card p { font-size: 13px; color: #666; margin-bottom: 25px; line-height: 1.5; }

.job-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px; border-radius: 50px; font-weight: 800; font-size: 13px; color: #fff; width: 85%;
}

.color-1 { border-top: 5px solid #8e44ad; } .color-1 i { color: #8e44ad; background: rgba(142, 68, 173, 0.1); } .color-1 .job-btn { background: #8e44ad; }
.color-2 { border-top: 5px solid #e74c3c; } .color-2 i { color: #e74c3c; background: rgba(231, 76, 60, 0.1); } .color-2 .job-btn { background: #e74c3c; }
.color-3 { border-top: 5px solid #2ecc71; } .color-3 i { color: #2ecc71; background: rgba(46, 204, 113, 0.1); } .color-3 .job-btn { background: #2ecc71; }
.color-4 { border-top: 5px solid #3498db; } .color-4 i { color: #3498db; background: rgba(52, 152, 219, 0.1); } .color-4 .job-btn { background: #3498db; }
.color-5 { border-top: 5px solid #f39c12; } .color-5 i { color: #f39c12; background: rgba(243, 156, 18, 0.1); } .color-5 .job-btn { background: #f39c12; color: #fff; }
.color-6 { border-top: 5px solid #1abc9c; } .color-6 i { color: #1abc9c; background: rgba(26, 188, 156, 0.1); } .color-6 .job-btn { background: #1abc9c; }
.color-7 { border-top: 5px solid #e84393; } .color-7 i { color: #e84393; background: rgba(232, 67, 147, 0.1); } .color-7 .job-btn { background: #e84393; }

/* ==========================================================================
   ADS & FOOTER
   ========================================================================== */
.ad-container { text-align: center; margin: 30px auto; width: 100%; overflow: hidden; }

/* ==========================================================================
   RESPONSIVE LAYOUT RULES
   ========================================================================== */
@media (max-width: 768px) {
    .top-split-grid { grid-template-columns: 1fr; }
    table { width: 100%; display: block; overflow-x: auto; white-space: nowrap; }
}