/* SGK Essential Addons — Main Stylesheet */

/* ===== Base ===== */
.sgk-widget-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 20px;
    border-left: 4px solid #e8a020;
    padding-left: 12px;
}
.sgk-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity .2s;
}
.sgk-btn:hover { opacity: .88; }
.sgk-btn-primary { background: #e8a020; color: #fff; }
.sgk-btn-secondary { background: #1a2b4a; color: #fff; }

/* ===== Quote Calculator ===== */
.sgk-quote-calculator {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 28px;
    margin: 20px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sgk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media(max-width:600px){ .sgk-form-row { grid-template-columns: 1fr; } }
.sgk-form-group { display: flex; flex-direction: column; gap: 6px; }
.sgk-form-group label { font-size: 13px; font-weight: 600; color: #555; }
.sgk-form-group input,
.sgk-form-group select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.sgk-form-group input:focus,
.sgk-form-group select:focus { border-color: #e8a020; }
.sgk-quote-result {
    margin-top: 16px;
    padding: 16px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #e8a020;
    font-weight: 600;
    color: #1a2b4a;
}

/* ===== Testimonials ===== */
.sgk-testimonials { margin: 20px 0; }
.sgk-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media(max-width:900px){ .sgk-testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .sgk-testimonials-grid { grid-template-columns: 1fr; } }
.sgk-testimonial-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow .2s;
}
.sgk-testimonial-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.sgk-stars { color: #e8a020; font-size: 16px; margin-bottom: 10px; }
.sgk-testimonial-text { font-size: 13px; color: #555; line-height: 1.6; margin: 0 0 16px; font-style: italic; }
.sgk-testimonial-author { display: flex; align-items: center; gap: 10px; }
.sgk-author-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: #1a2b4a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.sgk-testimonial-author strong { display: block; font-size: 13px; color: #1a2b4a; }
.sgk-testimonial-author span  { font-size: 12px; color: #999; }

/* ===== Service Cards ===== */
.sgk-service-cards { margin: 20px 0; }
.sgk-services-grid { display: grid; gap: 18px; }
.sgk-cols-3 { grid-template-columns: repeat(3,1fr); }
.sgk-cols-2 { grid-template-columns: repeat(2,1fr); }
@media(max-width:900px){ .sgk-cols-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .sgk-cols-3,.sgk-cols-2 { grid-template-columns: 1fr; } }
.sgk-service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 22px;
    transition: transform .2s, box-shadow .2s;
}
.sgk-service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.sgk-service-icon {
    width: 50px; height: 50px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
}
.sgk-service-card h4 { margin: 0 0 8px; font-size: 15px; color: #1a2b4a; }
.sgk-service-card p  { margin: 0 0 14px; font-size: 13px; color: #666; line-height: 1.6; }
.sgk-service-link { font-size: 13px; font-weight: 600; color: #e8a020; text-decoration: none; }

/* ===== Moving Checklist ===== */
.sgk-moving-checklist {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 28px;
    margin: 20px 0;
}
.sgk-checklist-week {
    font-size: 14px; font-weight: 700;
    color: #fff; background: #1a2b4a;
    padding: 8px 14px; border-radius: 6px;
    margin: 16px 0 10px; display: inline-block;
}
.sgk-checklist-items { list-style: none; padding: 0; margin: 0; }
.sgk-checklist-items li { margin-bottom: 8px; }
.sgk-checklist-items label {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; font-size: 14px; color: #444;
}
.sgk-checklist-items input[type="checkbox"] { width: 17px; height: 17px; accent-color: #e8a020; flex-shrink: 0; }
.sgk-checklist-items label.done span { text-decoration: line-through; color: #999; }
.sgk-checklist-progress { margin-top: 20px; }
.sgk-progress-label { font-size: 13px; color: #555; margin-bottom: 8px; font-weight: 600; }
.sgk-progress-bar { background: #f0f0f0; border-radius: 20px; height: 10px; overflow: hidden; }
.sgk-progress-fill { height: 100%; background: #e8a020; border-radius: 20px; width: 0; transition: width .4s; }

/* ===== City Routes ===== */
.sgk-city-routes { margin: 20px 0; }
.sgk-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media(max-width:1000px){ .sgk-routes-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px)  { .sgk-routes-grid { grid-template-columns: 1fr; } }
.sgk-route-card {
    background: #fff; border: 1px solid #e0e0e0;
    border-radius: 10px; padding: 16px; text-align: center;
    transition: box-shadow .2s;
}
.sgk-route-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.sgk-route-cities { font-size: 13px; font-weight: 700; color: #1a2b4a; margin-bottom: 8px; }
.sgk-route-arrow { color: #e8a020; margin: 0 6px; }
.sgk-route-meta { font-size: 12px; color: #777; margin-bottom: 12px; display: flex; justify-content: center; gap: 12px; }
.sgk-route-btn {
    display: inline-block; background: #1a2b4a; color: #fff;
    padding: 6px 18px; border-radius: 5px; font-size: 12px;
    font-weight: 600; text-decoration: none; transition: background .2s;
}
.sgk-route-btn:hover { background: #e8a020; color: #fff; }

/* ===== Tracking Form ===== */
.sgk-tracking-form {
    background: #fff; border: 1px solid #e0e0e0;
    border-radius: 10px; padding: 28px; margin: 20px 0;
}
.sgk-track-form { margin-top: 10px; }
.sgk-track-row { display: flex; gap: 12px; }
@media(max-width:600px){ .sgk-track-row { flex-direction: column; } }
.sgk-track-row input {
    flex: 1; padding: 12px 16px;
    border: 1px solid #ddd; border-radius: 6px;
    font-size: 14px; outline: none;
}
.sgk-track-row input:focus { border-color: #e8a020; }
.sgk-tracking-result {
    margin-top: 16px; padding: 16px;
    background: #e8f5e9; border-radius: 8px;
    border-left: 4px solid #2e7d32;
    font-size: 14px; color: #1b5e20;
}

/* ===== Stats Counter ===== */
.sgk-stats-counter {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    background: #1a2b4a;
    border-radius: 10px;
    padding: 32px 24px;
    margin: 20px 0;
    text-align: center;
}
@media(max-width:700px){ .sgk-stats-counter { grid-template-columns: repeat(2,1fr); } }
.sgk-stat-number {
    font-size: 36px; font-weight: 800;
    color: #e8a020; line-height: 1;
    margin-bottom: 8px;
}
.sgk-stat-label { font-size: 13px; color: #9db3cc; font-weight: 500; }

/* ===== WhatsApp Floating Button ===== */
.sgk-whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    z-index: 9999;
    transition: transform .2s;
    text-decoration: none;
}
.sgk-whatsapp-float:hover { transform: scale(1.1); }
.sgk-whatsapp-inline {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    padding: 10px 22px; border-radius: 6px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; transition: opacity .2s;
}
.sgk-whatsapp-inline:hover { opacity: .88; color: #fff; }
