/* ----------------------------------------------------------------
   1. GLOBAL SETTINGS & VARIABLES
------------------------------------------------------------------- */
:root {
    --orange: #ff6600;      /* StarHost Primary Orange */
    --orange-dark: #e65c00;
    --orange-soft: #fff4ed;  /* Background light tint */
    --white: #ffffff;
    --grey-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border: #eeeeee;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--white); 
    color: var(--text-dark); 
    line-height: 1.6;
    overflow-x: hidden;
}

.sh-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.sh-orange-text { color: var(--orange); }

/* Section Title Styling */
.sh-sec-title { text-align: center; margin-bottom: 60px; }
.sh-sec-title h2 { font-size: 38px; font-weight: 800; color: var(--text-dark); }
.sh-sec-title p { color: var(--text-muted); font-size: 18px; margin-top: 10px; }

/* ----------------------------------------------------------------
   2. HERO SECTION
------------------------------------------------------------------- */
.sh-hero { 
    padding: 120px 0 80px 0; 
    background: linear-gradient(135deg, #fff 0%, var(--orange-soft) 100%); 
}

.sh-hero-flex { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px; 
}

.sh-hero-content { flex: 1.2; }
.sh-hero-image { flex: 0.8; display: flex; justify-content: flex-end; }
dotlottie-wc { width: 100%; max-width: 550px; }

.sh-badge-orange { 
    background: #fef4d8; 
    color: var(--orange); 
    padding: 8px 18px; 
    border-radius: 50px; 
    font-size: 14px; 
    font-weight: bold; 
    display: inline-block; 
    margin-bottom: 25px; 
}

.sh-hero-content h1 { font-size: 56px; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }

.sh-hero-btns { display: flex; gap: 15px; }

.sh-btn-orange { 
    background: var(--orange); 
    color: #fff; 
    padding: 16px 35px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 800; 
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3); 
}

.sh-btn-orange:hover { 
    transform: translateY(-5px); 
    background: var(--orange-dark); 
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5); 
}

.sh-btn-line { 
    border: 2px solid var(--orange); 
    color: var(--orange); 
    padding: 14px 33px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: bold; 
}

.sh-btn-line:hover { background: var(--orange); color: #fff; }

/* ----------------------------------------------------------------
   3. CORE FEATURES
------------------------------------------------------------------- */
.sh-common-features { padding: 90px 0; background: var(--grey-bg); }

.sh-feat-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; 
}

.sh-feat-item { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid var(--border); 
}

.sh-feat-item:hover { 
    transform: translateY(-10px); 
    border-color: var(--orange); 
    box-shadow: var(--shadow); 
}

.sh-feat-item i { font-size: 45px; color: var(--orange); margin-bottom: 20px; }
.sh-feat-item h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }

/* ----------------------------------------------------------------
   4. TABS & PRICING CARDS
------------------------------------------------------------------- */
.sh-packages-area { padding: 100px 0; }

.sh-tabs-row { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 60px; 
}

.sh-tab-link { 
    background: var(--white); 
    border: 1px solid var(--border); 
    padding: 12px 35px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 700; 
    color: var(--text-muted); 
}

.sh-tab-link.active { 
    background: var(--orange); 
    color: var(--white); 
    border-color: var(--orange); 
}

.sh-pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    justify-content: center;
}

.sh-price-card { 
    background: var(--white); 
    padding: 55px 40px; 
    border-radius: 25px; 
    text-align: center; 
    border: 1px solid var(--border); 
    position: relative; 
}

.sh-price-card:hover { 
    transform: translateY(-15px); 
    border-color: var(--orange); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
}

.sh-price-card.featured { border: 3px solid var(--orange); }

.sh-popular-tag { 
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--orange); 
    color: var(--white); 
    padding: 6px 25px; 
    border-radius: 50px; 
    font-size: 13px; 
    font-weight: 800; 
}

.sh-price { font-size: 46px; font-weight: 800; margin: 25px 0; }
.sh-price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }

.sh-feat-list { 
    list-style: none; 
    text-align: left; 
    margin: 35px 0; 
    border-top: 1px solid #f0f0f0; 
    padding-top: 25px; 
}

.sh-feat-list li { 
    margin-bottom: 15px; 
    font-size: 15px; 
    display: flex; 
    align-items: center; 
}

.sh-feat-list li::before { 
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    color: var(--orange); 
    margin-right: 12px; 
}

.sh-btn-card { 
    width: 100%; 
    padding: 16px; 
    background: #f0f0f0; 
    border: none; 
    border-radius: 10px; 
    font-weight: 800; 
    cursor: pointer; 
}

.sh-price-card:hover .sh-btn-card, .sh-price-card.featured .sh-btn-card { 
    background: var(--orange); 
    color: var(--white); 
}

/* ----------------------------------------------------------------
   5. COMPARISON TABLE
------------------------------------------------------------------- */
.sh-comparison-area { padding: 100px 0; background: var(--grey-bg); }

.sh-table-wrapper { 
    background: var(--white); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
}

.sh-compare-table { 
    width: 100%; 
    border-collapse: collapse; 
    text-align: center; 
}

.sh-compare-table th { 
    background: #222; 
    color: var(--white); 
    padding: 22px; 
    font-size: 17px; 
}

.sh-compare-table td { 
    padding: 20px; 
    border-bottom: 1px solid #f0f0f0; 
    font-size: 16px; 
}

.sh-compare-table tr:hover { background: var(--orange-soft); }

/* ----------------------------------------------------------------
   6. TESTIMONIALS SLIDER
------------------------------------------------------------------- */
.sh-testimonials { padding: 100px 0; background: var(--orange-soft); }

.sh-test-item { padding: 20px; }

.sh-test-card { 
    background: var(--white); 
    padding: 50px 35px; 
    border-radius: 25px; 
    text-align: center; 
    border-top: 6px solid var(--orange); 
    min-height: 280px; 
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sh-test-card p { 
    font-style: italic; 
    font-size: 18px; 
    color: #444; 
    margin-bottom: 25px; 
    line-height: 1.8;
}

.sh-test-card h4 { font-weight: 800; color: var(--orange); font-size: 20px; }
.sh-test-card span { font-size: 14px; color: #999; }

/* Slick Customization */
.slick-dots li button:before { color: var(--orange) !important; font-size: 12px; }
.slick-dots li.slick-active button:before { color: var(--orange) !important; }

/* ----------------------------------------------------------------
   7. ANIMATIONS & RESPONSIVE
------------------------------------------------------------------- */
.sh-tab-content { display: none; }
.sh-tab-content.active { 
    display: block; 
    animation: fadeInUp 0.6s ease; 
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .sh-hero-flex { flex-direction: column; text-align: center; }
    .sh-hero-content h1 { font-size: 42px; }
    .sh-hero-image { justify-content: center; margin-top: 40px; }
    .sh-hero-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .sh-tabs-row { flex-wrap: wrap; }
    .sh-tab-link { width: 100%; }
}

/* پاپ اپ کا مین کنٹینر */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* گہرا سیاہ شفاف بیک گراؤنڈ */
    z-index: 10000; /* سب سے اوپر رکھنے کے لیے */
    backdrop-filter: blur(5px);
}

/* فارم کا سفید باکس */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 450px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    direction: rtl; /* اردو/عربی کے لیے رائٹ ٹو لیفٹ */
}

/* بند کرنے والا بٹن (X) */
.close-icon {
    position: absolute;
    top: 15px; left: 20px; /* RTL کی وجہ سے بائیں طرف */
    font-size: 30px;
    cursor: pointer;
    color: #888;
}

.modal-box h2 { color: #333; margin-bottom: 10px; }
.input-group { margin-bottom: 15px; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

#submitBtn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

#submitBtn:disabled { background: #ccc; }