/* ==========================================================================
   packages.css — reusable package section (packages page + service pages).
   Dark theme, coral (#F95F57) accent. Classes prefixed .pkgs-/.pkg-.
   ========================================================================== */
:root { --pkg-accent: #F95F57; }

.pkgs-section { padding: 72px 0; background: #0b0c0f; }
.pkgs-section .container { max-width: 1180px; }
.pkgs-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.pkgs-eyebrow { display: inline-block; color: var(--pkg-accent); font-family: 'Cairo', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 12px; }
.pkgs-head h2 { color: #fff; font-family: 'Anton', sans-serif; font-weight: 500; font-size: 32px; text-transform: uppercase; padding: 0 0 12px; margin: 0; }
.pkgs-head h2 span { color: var(--pkg-accent); }
.pkgs-head p { color: #aab1c0; font-family: 'Cairo', sans-serif !important; font-size: 15.5px; line-height: 1.6; padding: 0; margin: 0; }

/* Tabs */
.pkgs-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 40px; }
.pkgs-tab { background: #ffffff0a; border: 1px solid #ffffff26; color: #cfd3dc; border-radius: 999px;
    padding: 11px 24px; font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer;
    transition: all .2s ease; }
.pkgs-tab:hover { border-color: #ffffff4d; color: #fff; }
.pkgs-tab.active { background: var(--pkg-accent); border-color: var(--pkg-accent); color: #fff; box-shadow: 0 8px 22px #F95F5740; }

/* Panels + grid */
.pkgs-panel { display: none; }
.pkgs-panel.active { display: block; animation: pkgfade .25s ease; }
@keyframes pkgfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pkgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

/* Card */
.pkg-card { position: relative; display: flex; flex-direction: column; background: linear-gradient(343deg, #f9444408, #ffffff10 70%);
    border: 1px solid #51515159; border-radius: 16px; padding: 30px 26px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.pkg-card:hover { border-color: var(--pkg-accent); transform: translateY(-5px); box-shadow: 0 20px 44px #00000066; }
.pkg-badge { position: absolute; top: 16px; right: 16px; background: var(--pkg-accent); color: #fff; font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 11px; letter-spacing: .5px; padding: 5px 12px; border-radius: 999px; }
.pkg-card-head { border-bottom: 1px solid #ffffff14; padding-bottom: 18px; margin-bottom: 18px; }
.pkg-card-head h3 { color: #fff; font-family: 'Cairo', sans-serif !important; font-size: 20px; font-weight: 700; margin: 0; padding: 0; padding-right: 70px; }
.pkg-desc { color: #9aa1b1; font-family: 'Cairo', sans-serif !important; font-size: 13px; margin: 8px 0 0; padding: 0; }
.pkg-price { margin: 14px 0 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pkg-orig { color: #7c8290; text-decoration: line-through; font-family: 'Cairo', sans-serif; font-size: 16px; }
.pkg-amt { color: var(--pkg-accent); font-family: 'Anton', sans-serif; font-size: 34px; line-height: 1; }

.pkg-features { list-style: none; margin: 0 0 18px; padding: 0; max-height: 280px; overflow-y: auto; flex: 1 1 auto; }
.pkg-features::-webkit-scrollbar { width: 6px; }
.pkg-features::-webkit-scrollbar-thumb { background: #F95F5766; border-radius: 6px; }
.pkg-features li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; color: #c2c8d4;
    font-family: 'Cairo', sans-serif; font-size: 13.5px; line-height: 1.45; }
.pkg-features li i { color: var(--pkg-accent); font-size: 12px; margin-top: 4px; flex: 0 0 auto; }

.pkg-addons { background: #ffffff08; border: 1px dashed #ffffff26; border-radius: 10px; padding: 12px 14px; margin: 0 0 18px; }
.pkg-addons strong { display: block; color: #fff; font-family: 'Cairo', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 6px; }
.pkg-addons span { display: block; color: #9aa1b1; font-family: 'Cairo', sans-serif; font-size: 12.5px; line-height: 1.5; }

.pkg-cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--pkg-accent); color: #fff; border-radius: 10px; padding: 13px 20px; font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 15px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.pkg-cta:hover { color: #fff; background: #ff6f67; transform: translateY(-2px); box-shadow: 0 12px 28px #F95F5766; }

@media (max-width: 991px) { .pkgs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .pkgs-grid { grid-template-columns: 1fr; }
    .pkgs-head h2 { font-size: 26px; }
    .pkg-features { max-height: none; }
}
