/**
 * Sari Komak Theme - Main Stylesheet
 * @package SariKomak
 */

:root {
    --sk-primary: #2563eb;
    --sk-primary-dark: #1d4ed8;
    --sk-accent: #06b6d4;
    --sk-emergency: #dc2626;
    --sk-success: #059669;
    --sk-slate-50: #f8fafc;
    --sk-slate-100: #f1f5f9;
    --sk-slate-200: #e2e8f0;
    --sk-slate-300: #cbd5e1;
    --sk-slate-500: #64748b;
    --sk-slate-700: #334155;
    --sk-slate-800: #1e293b;
    --sk-slate-900: #0f172a;
}

* { box-sizing: border-box; }

body.sari-komak-theme {
    font-family: 'Vazirmatn', 'IRANSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif !important;
    background: var(--sk-slate-50);
    color: var(--sk-slate-800);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.sk-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   TOPBAR
   ============================ */
.sk-topbar {
    background: linear-gradient(to left, #dc2626, #f43f5e, #f59e0b);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}
.sk-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.sk-topbar-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.sk-topbar-phone {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.sk-topbar-phone:hover { background: rgba(255,255,255,0.3); color: white; }

.sk-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: sk-ping 1.5s infinite;
}
@keyframes sk-ping {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* ============================
   HEADER
   ============================ */
.sk-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sk-slate-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}
.sk-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.sk-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sk-primary), var(--sk-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(37,99,235,0.25);
}
.sk-logo-name {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--sk-primary), var(--sk-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sk-logo-slogan {
    font-size: 12px;
    color: var(--sk-slate-500);
    margin-top: 2px;
}
.sk-main-nav .sk-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.sk-main-nav .sk-menu li a,
.sk-main-nav ul.menu li a {
    padding: 8px 15px;
    color: var(--sk-slate-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
    display: block;
}
.sk-main-nav .sk-menu li a:hover,
.sk-main-nav ul.menu li a:hover {
    background: var(--sk-slate-100);
    color: var(--sk-primary);
}
.sk-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sk-mobile-toggle {
    display: none;
    background: var(--sk-slate-100);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* ============================
   BUTTONS
   ============================ */
.sk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.sk-btn-primary {
    background: linear-gradient(135deg, var(--sk-primary), var(--sk-primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.sk-btn-primary:hover {
    background: linear-gradient(135deg, var(--sk-primary-dark), #1e3a8a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.35);
}
.sk-btn-outline {
    background: white;
    color: var(--sk-slate-700);
    border: 1px solid var(--sk-slate-300);
}
.sk-btn-outline:hover {
    border-color: var(--sk-primary);
    color: var(--sk-primary);
}
.sk-btn-sm { padding: 6px 14px; font-size: 12px; }
.sk-btn-lg { padding: 14px 28px; font-size: 16px; }
.sk-btn-full { width: 100%; }

/* ============================
   HERO SECTION
   ============================ */
.sk-hero-section {
    position: relative;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: white;
    padding: 70px 0 90px;
    overflow: hidden;
}
.sk-hero-bg-glow-1, .sk-hero-bg-glow-2, .sk-hero-bg-glow-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.sk-hero-bg-glow-1 { top: 20%; right: 0; width: 400px; height: 400px; background: rgba(37,99,235,0.2); }
.sk-hero-bg-glow-2 { bottom: 0; left: 20%; width: 400px; height: 400px; background: rgba(6,182,212,0.2); }
.sk-hero-bg-glow-3 { top: 10%; left: 10%; width: 300px; height: 300px; background: rgba(245,158,11,0.1); }

.sk-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sk-hero-content { }
.sk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30,41,59,0.8);
    border: 1px solid rgba(51,65,85,0.7);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 24px;
}
.sk-hero-badge .sk-live-dot { background: #10b981; }

.sk-hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    color: white;
    margin: 0 0 20px;
}
.sk-title-gradient {
    background: linear-gradient(90deg, #60a5fa, #22d3ee, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sk-title-red {
    color: #fb7185;
    text-decoration: underline;
    text-decoration-color: rgba(251,113,133,0.4);
}
.sk-hero-subtitle {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 600px;
}
.sk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.sk-hero-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(51,65,85,0.7);
}
.sk-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sk-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.sk-feature-title {
    font-size: 13px;
    font-weight: bold;
    color: white;
}
.sk-feature-desc {
    font-size: 11px;
    color: #94a3b8;
}

/* Hero Quick-Service Card */
.sk-hero-card {
    background: rgba(30,41,59,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(51,65,85,0.7);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.sk-hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(51,65,85,0.7);
    margin-bottom: 20px;
}
.sk-hero-card-header h3 {
    color: white;
    font-size: 16px;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sk-hero-card-header p {
    color: #94a3b8;
    font-size: 12px;
    margin: 0;
}
.sk-badge-emergency {
    background: rgba(239,68,68,0.2);
    color: #fb7185;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.7; } }

.sk-quick-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.sk-quick-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(51,65,85,0.7);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.sk-quick-service-item:hover {
    background: rgba(37,99,235,0.15);
    border-color: var(--sk-primary);
}
.sk-quick-service-item.selected {
    background: rgba(37,99,235,0.2);
    border-color: var(--sk-primary);
}
.sk-quick-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sk-primary), var(--sk-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}
.sk-quick-title {
    flex: 1;
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.4;
}
.sk-quick-badge {
    background: #dc2626;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================
   SECTION HEADERS
   ============================ */
.sk-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.sk-section-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
}
.sk-section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--sk-slate-900);
    margin: 0 0 12px;
    line-height: 1.3;
}
.sk-section-subtitle {
    font-size: 16px;
    color: var(--sk-slate-500);
    margin: 0;
}

/* ============================
   SERVICES GRID
   ============================ */
.sk-services-section {
    padding: 80px 0;
    background: var(--sk-slate-50);
}
.sk-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sk-service-card {
    background: white;
    border: 1px solid var(--sk-slate-200);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.sk-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.sk-service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--sk-slate-900);
}
.sk-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s;
}
.sk-service-card:hover .sk-service-image img { transform: scale(1.05); }

.sk-service-emergency {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}
.sk-service-image-footer {
    position: absolute;
    bottom: 15px;
    right: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.sk-service-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37,99,235,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}
.sk-service-warranty, .sk-service-duration {
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}
.sk-service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.sk-service-title {
    font-size: 17px;
    font-weight: bold;
    color: var(--sk-slate-900);
    margin: 0;
    line-height: 1.4;
}
.sk-service-desc {
    font-size: 13px;
    color: var(--sk-slate-500);
    margin: 0;
    line-height: 1.6;
}
.sk-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sk-service-features li {
    font-size: 12px;
    color: var(--sk-slate-700);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sk-service-footer {
    padding-top: 16px;
    border-top: 1px solid var(--sk-slate-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sk-service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sk-price-value {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

/* ============================
   CALCULATOR SECTION
   ============================ */
.sk-calculator-section {
    padding: 80px 0;
    background: white;
}
.sk-calculator-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: start;
}
.sk-calc-form {
    background: var(--sk-slate-50);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--sk-slate-200);
}
.sk-calc-form h3 {
    margin: 0 0 24px;
    color: var(--sk-slate-900);
    font-size: 18px;
}
.sk-calc-field {
    margin-bottom: 22px;
}
.sk-calc-field label {
    display: block;
    font-weight: bold;
    color: var(--sk-slate-700);
    margin-bottom: 8px;
    font-size: 14px;
}
.sk-calc-field select,
.sk-calc-field input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--sk-slate-300);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--sk-slate-800);
}
.sk-calc-field input[type="range"] {
    width: 100%;
    accent-color: var(--sk-primary);
}
.sk-calc-qty-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 13px;
    margin-right: 8px;
}
.sk-calc-complexity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.sk-calc-complexity label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: white;
    border: 1px solid var(--sk-slate-200);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--sk-slate-700);
    transition: all 0.2s;
}
.sk-calc-complexity label:hover { border-color: var(--sk-primary); }
.sk-calc-complexity input { margin: 0; }
.sk-calc-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    cursor: pointer;
}

.sk-calc-result {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
}
.sk-calc-service-title {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #334155;
}
.sk-calc-total-label {
    font-size: 12px;
    color: #cbd5e1;
    margin: 20px 0 6px;
}
.sk-calc-total {
    font-size: 36px;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 20px;
}
.sk-calc-breakdown {
    text-align: right;
    background: rgba(15,23,42,0.6);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}
.sk-calc-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #334155;
    font-size: 13px;
}
.sk-calc-breakdown-item:last-child { border-bottom: none; }
.sk-calc-note {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
}

/* ============================
   TECHNICIANS
   ============================ */
.sk-technicians-section { padding: 80px 0; background: white; }
.sk-technicians-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sk-technician-card {
    background: var(--sk-slate-50);
    border: 1px solid var(--sk-slate-200);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s;
}
.sk-technician-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.sk-tech-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}
.sk-tech-photo {
    position: relative;
    flex-shrink: 0;
}
.sk-tech-photo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sk-tech-verified {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--sk-success);
    color: white;
    padding: 4px;
    border-radius: 50%;
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sk-tech-info { flex: 1; }
.sk-tech-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.sk-tech-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}
.sk-tech-rating {
    background: #fef3c7;
    color: #92400e;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}
.sk-tech-name {
    font-size: 17px;
    font-weight: 900;
    color: var(--sk-slate-900);
    margin: 0 0 4px;
}
.sk-tech-title {
    font-size: 12px;
    color: var(--sk-slate-500);
    margin: 0;
}
.sk-tech-specialty {
    background: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--sk-slate-200);
}
.sk-tech-specialty strong {
    display: block;
    font-size: 12px;
    color: var(--sk-slate-700);
    margin-bottom: 4px;
}
.sk-tech-specialty p {
    font-size: 12px;
    color: var(--sk-slate-500);
    margin: 0;
}
.sk-tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.sk-tech-stat {
    background: white;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--sk-slate-200);
    text-align: center;
}
.sk-stat-num {
    font-size: 15px;
    font-weight: 900;
    color: var(--sk-primary);
}
.sk-stat-label {
    font-size: 11px;
    color: var(--sk-slate-500);
    margin-top: 2px;
}
.sk-tech-actions {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--sk-slate-200);
}
.sk-tech-actions .sk-btn {
    flex: 1;
    font-size: 12px;
    padding: 10px;
}

/* ============================
   TRACKER
   ============================ */
.sk-tracker-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #eff6ff);
}
.sk-tracker-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.sk-tracker-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.sk-tracker-input {
    flex: 1;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--sk-slate-300);
    border-radius: 16px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--sk-slate-900);
}
.sk-tracker-samples {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--sk-slate-200);
}
.sk-tracker-samples small { color: var(--sk-slate-500); margin-left: 10px; font-size: 12px; }
.sk-sample-code {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 4px;
}
.sk-sample-code:hover { background: #bfdbfe; }

.sk-tracker-result {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--sk-slate-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sk-tracker-header {
    background: var(--sk-slate-900);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}
.sk-tracker-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.sk-tracker-code-label {
    font-size: 12px;
    color: #60a5fa;
    font-weight: bold;
}
.sk-tracker-service-name {
    font-size: 17px;
    font-weight: 900;
    margin-top: 4px;
}
.sk-tracker-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.sk-tracker-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    color: #cbd5e1;
}
.sk-tracker-progress {
    background: var(--sk-slate-50);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}
.sk-tracker-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 20px;
}
.sk-tracker-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    height: 4px;
    background: var(--sk-slate-200);
    border-radius: 2px;
    z-index: 0;
}
.sk-tracker-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.sk-tracker-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--sk-slate-300);
    color: var(--sk-slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 8px;
}
.sk-tracker-step.done .sk-tracker-step-circle {
    background: var(--sk-primary);
    border-color: var(--sk-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(37,99,235,0.3);
}
.sk-tracker-step.current .sk-tracker-step-circle {
    box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
    transform: scale(1.1);
}
.sk-tracker-step-label {
    font-size: 12px;
    font-weight: bold;
    color: var(--sk-slate-500);
}
.sk-tracker-step.done .sk-tracker-step-label { color: var(--sk-slate-900); }

.sk-tracker-technician {
    background: linear-gradient(135deg, #eff6ff, #f0fdfa);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sk-tracker-technician img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid white;
}
.sk-tracker-tech-info { flex: 1; }
.sk-tracker-tech-name { font-size: 16px; font-weight: 900; color: var(--sk-slate-900); }
.sk-tracker-tech-title { font-size: 12px; color: #1e40af; margin-top: 2px; }

/* ============================
   ARTICLES
   ============================ */
.sk-articles-section { padding: 80px 0; background: var(--sk-slate-50); }
.sk-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sk-article-card {
    background: white;
    border: 1px solid var(--sk-slate-200);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.sk-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    color: inherit;
}
.sk-article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.sk-article-image img { width: 100%; height: 100%; object-fit: cover; }
.sk-article-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(37,99,235,0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    backdrop-filter: blur(6px);
}
.sk-article-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.sk-article-meta {
    font-size: 11px;
    color: var(--sk-slate-400);
    margin-bottom: 8px;
}
.sk-article-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--sk-slate-900);
    margin: 0 0 10px;
    line-height: 1.5;
}
.sk-article-excerpt {
    font-size: 12px;
    color: var(--sk-slate-500);
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}
.sk-article-more {
    color: var(--sk-primary);
    font-weight: bold;
    font-size: 12px;
}

/* ============================
   BOOKING FORM (Inline + Modal)
   ============================ */
.sk-booking-inline-section { padding: 60px 0; background: white; }
.sk-booking-inline-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #eff6ff, #f0fdfa);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #dbeafe;
}
.sk-booking-inline-header { text-align: center; margin-bottom: 30px; }

.sk-booking-form { }
.sk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.sk-form-field { }
.sk-form-full { grid-column: 1 / -1; }
.sk-form-field label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--sk-slate-700);
    margin-bottom: 6px;
}
.sk-form-field input,
.sk-form-field textarea,
.sk-form-field select {
    width: 100%;
    padding: 11px 14px;
    background: white;
    border: 1px solid var(--sk-slate-300);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--sk-slate-900);
}
.sk-form-field input:focus,
.sk-form-field textarea:focus,
.sk-form-field select:focus {
    outline: none;
    border-color: var(--sk-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.sk-form-response {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 14px;
}
.sk-form-response.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.sk-form-response.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
.sk-form-response .sk-tracking-code {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 8px 0;
    font-size: 18px;
}

/* Scheduled fields (appear when 'رزرو زمانی' is selected) */
.sk-scheduled-field {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 12px 14px !important;
    border: 1px dashed #93c5fd;
    border-radius: 12px;
    animation: sk-fade-in 0.3s ease-in;
}
.sk-scheduled-field label {
    color: #1e40af !important;
}
@keyframes sk-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   MODAL
   ============================ */
.sk-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.sk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(6px);
}
.sk-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 10000;
}
.sk-modal-header {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    color: white;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 5;
}
.sk-modal-header h3 { margin: 0; font-size: 18px; color: white; }
.sk-modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
.sk-modal-close:hover { background: rgba(255,255,255,0.2); }
.sk-modal-body { padding: 30px; }

/* ============================
   BOOKING CTA
   ============================ */
.sk-booking-cta { padding: 60px 0; background: linear-gradient(135deg, #dc2626, #f43f5e); }
.sk-cta-wrap { text-align: center; color: white; }
.sk-cta-wrap h2 { color: white; margin-bottom: 12px; font-size: 30px; }
.sk-cta-wrap p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 24px; }
.sk-cta-wrap .sk-btn-primary { background: white; color: #dc2626; }
.sk-cta-wrap .sk-btn-primary:hover { background: #fef2f2; color: #dc2626; }

/* ============================
   FOOTER
   ============================ */
.sk-footer {
    background: var(--sk-slate-900);
    color: #cbd5e1;
    padding: 60px 0 30px;
    margin-top: 60px;
}
.sk-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #334155;
}
.sk-footer-logo { display: flex; gap: 12px; align-items: center; margin-bottom: 15px; }
.sk-footer-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sk-primary), var(--sk-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}
.sk-footer-brand { font-size: 22px; font-weight: 900; color: white; }
.sk-footer-brand-sub { font-size: 12px; color: #60a5fa; }
.sk-footer-about { font-size: 13px; color: #94a3b8; margin-bottom: 15px; line-height: 1.8; }
.sk-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sk-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(30,41,59,0.8);
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}
.sk-footer-badge-green { color: #34d399; }
.sk-footer-badge-blue { color: #60a5fa; }
.sk-footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sk-footer-links { list-style: none; padding: 0; margin: 0; }
.sk-footer-links li { padding: 4px 0; }
.sk-footer-links a { color: #cbd5e1; text-decoration: none; font-size: 13px; }
.sk-footer-links a:hover { color: #60a5fa; }
.sk-footer-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sk-footer-district {
    background: rgba(30,41,59,0.8);
    color: #cbd5e1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    border: 1px solid #334155;
}
.sk-footer-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
}
.sk-footer-contact-box {
    padding: 16px;
    background: rgba(30,41,59,0.8);
    border: 1px solid #334155;
    border-radius: 16px;
    margin-bottom: 12px;
}
.sk-footer-contact-label { font-size: 11px; color: #94a3b8; margin-bottom: 8px; }
.sk-footer-emergency-phone {
    display: block;
    text-align: center;
    background: #dc2626;
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 12px;
}
.sk-footer-emergency-phone:hover { background: #b91c1c; color: white; }
.sk-footer-contact-line {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
    color: #cbd5e1;
}
.sk-footer-contact-actions { display: flex; gap: 8px; }
.sk-footer-contact-actions .sk-btn { flex: 1; }

.sk-footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #64748b;
}
.sk-footer-bottom-links span { margin: 0 5px; }

/* ============================
   MOBILE EMERGENCY BUTTON
   ============================ */
.sk-mobile-emergency-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(220,38,38,0.5);
    z-index: 99;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================
   FULL-WIDTH PAGE TEMPLATE (used for demo homepage)
   ============================ */
.sk-fullwidth-page {
    margin: 0;
    padding: 0;
}
.sk-fullwidth-page > .sk-hero-section:first-child,
.sk-fullwidth-page > *:first-child {
    margin-top: 0;
}
.sk-fullwidth-page p:empty { display: none; }

/* ============================
   SINGLE POST / PAGE
   ============================ */
.sk-single-post, .sk-page {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.sk-single-thumb img { border-radius: 16px; }
.sk-single-title, .sk-page-title { font-size: 32px; margin: 20px 0 10px; }
.sk-single-meta { color: var(--sk-slate-500); font-size: 13px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--sk-slate-200); }
.sk-single-content { font-size: 16px; line-height: 1.9; color: var(--sk-slate-700); }
.sk-single-content h1, .sk-single-content h2, .sk-single-content h3 { margin-top: 32px; color: var(--sk-slate-900); }

.sk-cta-inline {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid #93c5fd;
}
.sk-cta-inline h3 { margin: 0 0 15px; color: #1e40af; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .sk-hero-grid { grid-template-columns: 1fr; }
    .sk-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .sk-technicians-grid { grid-template-columns: repeat(2, 1fr); }
    .sk-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .sk-calculator-wrap { grid-template-columns: 1fr; }
    .sk-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .sk-main-nav { display: none; }
    .sk-mobile-toggle { display: block; }
    .sk-main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .sk-main-nav.active .sk-menu { flex-direction: column; }
    .sk-mobile-emergency-btn { display: flex; }
}
@media (max-width: 640px) {
    .sk-hero-title { font-size: 32px; }
    .sk-section-title { font-size: 26px; }
    .sk-services-grid,
    .sk-technicians-grid,
    .sk-articles-grid { grid-template-columns: 1fr !important; }
    .sk-form-grid { grid-template-columns: 1fr; }
    .sk-footer-grid { grid-template-columns: 1fr; }
    .sk-hero-badges-grid { grid-template-columns: 1fr; }
    .sk-tracker-form { flex-direction: column; }
}
