/**
 * Packages CPT — Styles
 *
 * Design system: section-badge (blue), black titles, green buttons,
 * 24px radius cards, nth-child gradients, reveal animations.
 */

/* =====================================================
   VARIABLES
   ===================================================== */
:root {
    --pkg-brand: #2f5aae;
    --pkg-brand-light: #338eaa;
    --pkg-green: #27ae60;
    --pkg-green2: #2ecc71;
    --pkg-dark: #1a3a6b;
    --pkg-text: #272626;
    --pkg-text-light: #3d4654;
    --pkg-light-bg: #f8fbff;
    --pkg-card-radius: 24px;
    --pkg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Package color schemes */
    --pkg-blue-from: #2f5aae;
    --pkg-blue-to: #4175fc;
    --pkg-green-from: #27ae60;
    --pkg-green-to: #2ecc71;
    --pkg-purple-from: #7c3aed;
    --pkg-purple-to: #a855f7;
    --pkg-gold-from: #d97706;
    --pkg-gold-to: #f59e0b;
}

/* =====================================================
   SECTION 1: HERO
   ===================================================== */
.pkg-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--pkg-dark);
    overflow: hidden;
    padding: 140px 0 120px;
}

.pkg-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12,26,42,0.95) 0%, rgba(47,90,174,0.8) 50%, rgba(39,174,96,0.7) 100%);
    z-index: 1;
}

.pkg-hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pkg-hero__shape {
    position: absolute;
    border-radius: 50%;
}

.pkg-hero__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39,174,96,0.15), transparent 70%);
    top: -150px;
    right: -100px;
    animation: pkg-float 18s ease-in-out infinite;
}

.pkg-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(51,142,170,0.12), transparent 70%);
    bottom: -120px;
    left: -120px;
    animation: pkg-float 22s ease-in-out infinite reverse;
}

.pkg-hero__shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
    top: 35%;
    left: 15%;
    animation: pkg-float 15s ease-in-out infinite 3s;
}

.pkg-hero__shape--4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
    top: 20%;
    right: 20%;
    animation: pkg-float 20s ease-in-out infinite 5s;
}

/* Diagonal lines */
.pkg-hero__line {
    position: absolute;
    width: 200px;
    height: 2px;
    opacity: 0.06;
}

.pkg-hero__line--1 {
    background: linear-gradient(90deg, transparent, #fff, transparent);
    top: 30%;
    right: 10%;
    transform: rotate(-35deg);
}

.pkg-hero__line--2 {
    background: linear-gradient(90deg, transparent, #fff, transparent);
    bottom: 25%;
    left: 8%;
    transform: rotate(25deg);
}

/* Floating marketing/code icons */
.pkg-hero__icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pkg-hero__float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pkg-icon-float 8s ease-in-out infinite;
}

.pkg-hero__float-icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255,255,255,0.4);
}

.pkg-hero__float-icon--1 { top: 15%; left: 8%; animation-delay: 0s; animation-duration: 7s; }
.pkg-hero__float-icon--2 { top: 60%; left: 5%; animation-delay: 1.5s; animation-duration: 9s; width: 44px; height: 44px; }
.pkg-hero__float-icon--3 { top: 25%; right: 10%; animation-delay: 0.8s; animation-duration: 8s; width: 56px; height: 56px; }
.pkg-hero__float-icon--4 { top: 65%; right: 6%; animation-delay: 2s; animation-duration: 10s; }
.pkg-hero__float-icon--5 { top: 10%; right: 30%; animation-delay: 3s; animation-duration: 7.5s; width: 40px; height: 40px; }
.pkg-hero__float-icon--6 { bottom: 20%; left: 25%; animation-delay: 1s; animation-duration: 8.5s; width: 42px; height: 42px; }

@keyframes pkg-icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

.pkg-hero .container {
    position: relative;
    z-index: 3;
}

.pkg-hero__content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

/* Hero badge */
.pkg-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.pkg-hero__badge svg {
    color: #fbbf24;
}

.pkg-hero__title {
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.pkg-hero__desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero actions */
.pkg-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pkg-btn--glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 32px;
}

.pkg-btn--glass:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-3px);
}

/* Bottom wave */
.pkg-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
    color: #fff;
}

/* Wave transitions to white (next section background) */

.pkg-hero__wave svg {
    width: 100%;
    height: 60px;
}

/* =====================================================
   BUTTONS (shared)
   ===================================================== */
.pkg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pkg-transition);
    cursor: pointer;
    border: none;
}

.pkg-btn--green {
    background: linear-gradient(135deg, var(--pkg-green), var(--pkg-green2));
    color: #fff;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
}

.pkg-btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39,174,96,0.45);
    color: #fff;
}

.pkg-btn--lg {
    padding: 18px 44px;
    font-size: 18px;
}

/* =====================================================
   SECTION 2: STATS BAR
   ===================================================== */
.pkg-stats {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -50px;
}

.pkg-stats .container {
    position: relative;
}

.pkg-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pkg-stats__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e8ecf1;
    transition: var(--pkg-transition);
}

.pkg-stats__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pkg-stats__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pkg-stats__icon svg {
    width: 28px;
    height: 28px;
}

.pkg-stats__item:nth-child(1) .pkg-stats__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-stats__item:nth-child(1) .pkg-stats__icon svg { stroke: #3b82f6; }
.pkg-stats__item:nth-child(2) .pkg-stats__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-stats__item:nth-child(2) .pkg-stats__icon svg { stroke: #27ae60; }
.pkg-stats__item:nth-child(3) .pkg-stats__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pkg-stats__item:nth-child(3) .pkg-stats__icon svg { stroke: #f59e0b; }
.pkg-stats__item:nth-child(4) .pkg-stats__icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pkg-stats__item:nth-child(4) .pkg-stats__icon svg { stroke: #7c3aed; }

.pkg-stats__data {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pkg-stats__row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pkg-stats__number {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--pkg-dark);
    line-height: 1;
}

.pkg-stats__suffix {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--pkg-brand);
}

.pkg-stats__label {
    font-size: 14px;
    color: var(--pkg-text-light);
    font-weight: 600;
}

/* =====================================================
   SECTION 3: OVERVIEW
   ===================================================== */
.pkg-overview {
    padding: 80px 0 90px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative shape */
.pkg-overview::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,90,174,0.04), transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.pkg-overview .container {
    position: relative;
    z-index: 1;
}

.pkg-overview .section-badge {
    text-align: right;
    margin: 0 0 16px;
}

.pkg-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pkg-overview__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.pkg-overview__desc {
    font-size: 17px;
    font-weight: 500;
    color: var(--pkg-text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.pkg-overview__points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pkg-overview__point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--pkg-text);
    font-weight: 600;
}

.pkg-overview__point-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.pkg-overview__point-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5;
    border-radius: 50%;
    flex-shrink: 0;
}

.pkg-overview__image img {
    width: 100%;
    border-radius: var(--pkg-card-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* =====================================================
   SECTION 4: SERVICES GRID
   ===================================================== */
.pkg-services {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    overflow: hidden;
}

/* Decorative dots pattern */
.pkg-services::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 40px;
    left: -40px;
    background-image: radial-gradient(circle, rgba(47,90,174,0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

.pkg-services .container {
    position: relative;
    z-index: 1;
}

.pkg-services__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pkg-brand), var(--pkg-brand-light), var(--pkg-green));
    z-index: 1;
}

.pkg-services__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pkg-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pkg-services__card {
    background: #fff;
    border-radius: var(--pkg-card-radius);
    padding: 40px 28px 36px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--pkg-transition);
    position: relative;
    overflow: hidden;
}

/* Colored top gradient bar always visible */
.pkg-services__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    border-radius: 24px 24px 0 0;
}

.pkg-services__card:nth-child(6n+1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pkg-services__card:nth-child(6n+2)::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.pkg-services__card:nth-child(6n+3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pkg-services__card:nth-child(6n+4)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.pkg-services__card:nth-child(6n+5)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.pkg-services__card:nth-child(6n+6)::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

.pkg-services__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 4px;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--pkg-transition);
}

.pkg-services__card:nth-child(6n+1)::after { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pkg-services__card:nth-child(6n+2)::after { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.pkg-services__card:nth-child(6n+3)::after { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pkg-services__card:nth-child(6n+4)::after { background: linear-gradient(90deg, #ec4899, #f472b6); }
.pkg-services__card:nth-child(6n+5)::after { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.pkg-services__card:nth-child(6n+6)::after { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

.pkg-services__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.pkg-services__card:hover::after {
    opacity: 1;
}

.pkg-services__card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pkg-services__card:nth-child(6n+1) .pkg-services__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-services__card:nth-child(6n+2) .pkg-services__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-services__card:nth-child(6n+3) .pkg-services__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pkg-services__card:nth-child(6n+4) .pkg-services__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.pkg-services__card:nth-child(6n+5) .pkg-services__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pkg-services__card:nth-child(6n+6) .pkg-services__card-icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }

.pkg-services__card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.pkg-services__card-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--pkg-brand);
}

.pkg-services__card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--pkg-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pkg-services__card-desc {
    font-size: 15px;
    color: #3d4654;
    line-height: 1.9;
    font-weight: 500;
}

/* Hover: show card color tint */
.pkg-services__card:nth-child(6n+1):hover { border-color: rgba(59,130,246,0.3); }
.pkg-services__card:nth-child(6n+2):hover { border-color: rgba(39,174,96,0.3); }
.pkg-services__card:nth-child(6n+3):hover { border-color: rgba(245,158,11,0.3); }
.pkg-services__card:nth-child(6n+4):hover { border-color: rgba(236,72,153,0.3); }
.pkg-services__card:nth-child(6n+5):hover { border-color: rgba(124,58,237,0.3); }
.pkg-services__card:nth-child(6n+6):hover { border-color: rgba(6,182,212,0.3); }

/* =====================================================
   SECTION 5: PRICING PACKAGES ⭐
   ===================================================== */
.pkg-pricing {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f5ff 0%, #e8f0fe 30%, #f5f0ff 60%, #edfcf2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative marketing shapes */
.pkg-pricing__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pkg-pricing__shape {
    position: absolute;
    border-radius: 50%;
}

.pkg-pricing__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47,90,174,0.08), transparent 70%);
    top: -150px;
    left: -150px;
    animation: pkg-float 20s ease-in-out infinite;
}

.pkg-pricing__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: pkg-float 25s ease-in-out infinite reverse;
}

@keyframes pkg-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Floating marketing icons in background */
.pkg-pricing::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 60px;
    right: 40px;
    background-image: radial-gradient(circle, rgba(124,58,237,0.08) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 0;
}

.pkg-pricing::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: 60px;
    left: 30px;
    background-image: radial-gradient(circle, rgba(39,174,96,0.08) 2px, transparent 2px);
    background-size: 24px 24px;
    z-index: 0;
}

/* Floating marketing icons */
.pkg-pricing__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pkg-pricing__float {
    position: absolute;
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(47,90,174,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pkg-icon-float 8s ease-in-out infinite;
}

.pkg-pricing__float svg {
    width: 100%;
    height: 100%;
}

.pkg-pricing__float--1 { top: 80px; left: 40px; animation-delay: 0s; }
.pkg-pricing__float--1 svg { stroke: var(--pkg-blue-from); }
.pkg-pricing__float--2 { top: 50%; right: 30px; animation-delay: 2s; }
.pkg-pricing__float--2 svg { stroke: var(--pkg-green-from); }
.pkg-pricing__float--3 { bottom: 100px; left: 60px; animation-delay: 1s; width: 42px; height: 42px; }
.pkg-pricing__float--3 svg { stroke: var(--pkg-purple-from); }
.pkg-pricing__float--4 { top: 30%; right: 60px; animation-delay: 3s; width: 44px; height: 44px; }
.pkg-pricing__float--4 svg { stroke: var(--pkg-gold-from); }

.pkg-pricing .container {
    position: relative;
    z-index: 1;
}

.pkg-pricing__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 16px;
}

.pkg-pricing__desc {
    font-size: 17px;
    font-weight: 500;
    color: var(--pkg-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.pkg-pricing__grid {
    display: grid;
    gap: 28px;
    align-items: stretch;
}

.pkg-pricing__grid--1 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.pkg-pricing__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.pkg-pricing__grid--3 { grid-template-columns: repeat(3, 1fr); }
.pkg-pricing__grid--4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pkg-pricing__grid--5 { grid-template-columns: repeat(3, 1fr); }
.pkg-pricing__grid--6 { grid-template-columns: repeat(3, 1fr); }

/* Pricing Card — 2-per-row layout */
.pkg-pricing__card {
    background: #fff;
    border-radius: 24px;
    border: 2px solid #eef2f7;
    padding: 0;
    overflow: hidden;
    transition: var(--pkg-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.pkg-pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}

/* Featured card */
.pkg-pricing__card--featured {
    z-index: 2;
    border-width: 2px;
}

.pkg-pricing__card--featured:hover {
    transform: translateY(-8px);
}

.pkg-pricing__card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 0 0 14px 14px;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}

/* Card Header — color-coded with left accent bar */
.pkg-pricing__card-header {
    padding: 32px 28px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #f0f4f8;
}

.pkg-pricing__card--featured .pkg-pricing__card-header {
    padding-top: 44px;
}

.pkg-pricing__card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
    padding: 12px;
    border-radius: 16px;
}

.pkg-pricing__card-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Color theme per card — light mode */
.pkg-pricing__card--blue { box-shadow: 0 4px 20px rgba(47,90,174,0.08); }
.pkg-pricing__card--blue .pkg-pricing__card-header { background: linear-gradient(135deg, rgba(47,90,174,0.08), rgba(65,117,252,0.04)); }
.pkg-pricing__card--blue .pkg-pricing__card-name { color: var(--pkg-blue-from); }
.pkg-pricing__card--blue .pkg-pricing__card-amount { color: var(--pkg-blue-from); }
.pkg-pricing__card--blue .pkg-pricing__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-pricing__card--blue .pkg-pricing__card-btn { background: linear-gradient(135deg, var(--pkg-blue-from), var(--pkg-blue-to)); color: #fff; box-shadow: 0 6px 25px rgba(47,90,174,0.25); }
.pkg-pricing__card--blue .pkg-pricing__card-btn:hover { box-shadow: 0 10px 35px rgba(47,90,174,0.4); transform: translateY(-2px); }
.pkg-pricing__card--blue.pkg-pricing__card--featured { border-color: var(--pkg-blue-from); box-shadow: 0 10px 40px rgba(47,90,174,0.15); }
.pkg-pricing__card--blue .pkg-pricing__card-features svg { stroke: var(--pkg-blue-from); }

.pkg-pricing__card--green { box-shadow: 0 4px 20px rgba(39,174,96,0.08); }
.pkg-pricing__card--green .pkg-pricing__card-header { background: linear-gradient(135deg, rgba(39,174,96,0.08), rgba(46,204,113,0.04)); }
.pkg-pricing__card--green .pkg-pricing__card-name { color: var(--pkg-green-from); }
.pkg-pricing__card--green .pkg-pricing__card-amount { color: var(--pkg-green-from); }
.pkg-pricing__card--green .pkg-pricing__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-pricing__card--green .pkg-pricing__card-btn { background: linear-gradient(135deg, var(--pkg-green-from), var(--pkg-green-to)); color: #fff; box-shadow: 0 6px 25px rgba(39,174,96,0.25); }
.pkg-pricing__card--green .pkg-pricing__card-btn:hover { box-shadow: 0 10px 35px rgba(39,174,96,0.4); transform: translateY(-2px); }
.pkg-pricing__card--green.pkg-pricing__card--featured { border-color: var(--pkg-green-from); box-shadow: 0 20px 60px rgba(39,174,96,0.15); }
.pkg-pricing__card--green .pkg-pricing__card-features svg { stroke: var(--pkg-green-from); }

.pkg-pricing__card--purple { box-shadow: 0 4px 20px rgba(124,58,237,0.08); }
.pkg-pricing__card--purple .pkg-pricing__card-header { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(168,85,247,0.04)); }
.pkg-pricing__card--purple .pkg-pricing__card-name { color: var(--pkg-purple-from); }
.pkg-pricing__card--purple .pkg-pricing__card-amount { color: var(--pkg-purple-from); }
.pkg-pricing__card--purple .pkg-pricing__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pkg-pricing__card--purple .pkg-pricing__card-btn { background: linear-gradient(135deg, var(--pkg-purple-from), var(--pkg-purple-to)); color: #fff; box-shadow: 0 6px 25px rgba(124,58,237,0.25); }
.pkg-pricing__card--purple .pkg-pricing__card-btn:hover { box-shadow: 0 10px 35px rgba(124,58,237,0.4); transform: translateY(-2px); }
.pkg-pricing__card--purple.pkg-pricing__card--featured { border-color: var(--pkg-purple-from); box-shadow: 0 20px 60px rgba(124,58,237,0.15); }
.pkg-pricing__card--purple .pkg-pricing__card-features svg { stroke: var(--pkg-purple-from); }

.pkg-pricing__card--gold { box-shadow: 0 4px 20px rgba(217,119,6,0.08); }
.pkg-pricing__card--gold .pkg-pricing__card-header { background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(245,158,11,0.04)); }
.pkg-pricing__card--gold .pkg-pricing__card-name { color: var(--pkg-gold-from); }
.pkg-pricing__card--gold .pkg-pricing__card-amount { color: var(--pkg-gold-from); }
.pkg-pricing__card--gold .pkg-pricing__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pkg-pricing__card--gold .pkg-pricing__card-btn { background: linear-gradient(135deg, var(--pkg-gold-from), var(--pkg-gold-to)); color: #fff; box-shadow: 0 6px 25px rgba(217,119,6,0.25); }
.pkg-pricing__card--gold .pkg-pricing__card-btn:hover { box-shadow: 0 10px 35px rgba(217,119,6,0.4); transform: translateY(-2px); }
.pkg-pricing__card--gold.pkg-pricing__card--featured { border-color: var(--pkg-gold-from); box-shadow: 0 20px 60px rgba(217,119,6,0.15); }
.pkg-pricing__card--gold .pkg-pricing__card-features svg { stroke: var(--pkg-gold-from); }

/* Price area */
.pkg-pricing__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    padding: 20px 28px;
    position: relative;
}

.pkg-pricing__card-amount {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1;
}

.pkg-pricing__card-meta {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: var(--pkg-text-light);
    font-weight: 600;
}

.pkg-pricing__card-currency {
    font-size: 15px;
    color: var(--pkg-text-light);
}

.pkg-pricing__card-period {
    font-size: 12px;
    opacity: 0.7;
}

/* Features list */
.pkg-pricing__card-features {
    list-style: none;
    padding: 16px 28px 24px;
    margin: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    position: relative;
    border-top: 1px solid #f0f4f8;
}

.pkg-pricing__card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pkg-text);
    line-height: 1.5;
    padding: 5px 0;
}

.pkg-pricing__card-features svg {
    flex-shrink: 0;
}

/* Card CTA */
.pkg-pricing__card-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    margin: 0 28px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pkg-transition);
    position: relative;
}

.pkg-pricing__card-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* =====================================================
   SECTION 6: WHY CHOOSE US
   ===================================================== */
.pkg-why {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.pkg-why::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px dashed rgba(47,90,174,0.1);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.pkg-why::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39,174,96,0.06), transparent 70%);
    bottom: -80px;
    left: -80px;
    z-index: 0;
}

.pkg-why .container {
    position: relative;
    z-index: 1;
}

.pkg-why__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pkg-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pkg-why__card {
    background: #fff;
    border-radius: var(--pkg-card-radius);
    padding: 40px 28px 36px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--pkg-transition);
    position: relative;
    overflow: hidden;
}

/* Colored top bar — always visible */
.pkg-why__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    border-radius: 24px 24px 0 0;
}

.pkg-why__card:nth-child(6n+1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pkg-why__card:nth-child(6n+2)::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.pkg-why__card:nth-child(6n+3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pkg-why__card:nth-child(6n+4)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.pkg-why__card:nth-child(6n+5)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.pkg-why__card:nth-child(6n+6)::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

.pkg-why__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 0;
}

.pkg-why__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pkg-why__card:nth-child(6n+1):hover { border-color: rgba(59,130,246,0.3); }
.pkg-why__card:nth-child(6n+2):hover { border-color: rgba(39,174,96,0.3); }
.pkg-why__card:nth-child(6n+3):hover { border-color: rgba(245,158,11,0.3); }
.pkg-why__card:nth-child(6n+4):hover { border-color: rgba(236,72,153,0.3); }
.pkg-why__card:nth-child(6n+5):hover { border-color: rgba(124,58,237,0.3); }
.pkg-why__card:nth-child(6n+6):hover { border-color: rgba(6,182,212,0.3); }

.pkg-why__card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pkg-why__card:nth-child(6n+1) .pkg-why__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-why__card:nth-child(6n+2) .pkg-why__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-why__card:nth-child(6n+3) .pkg-why__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pkg-why__card:nth-child(6n+4) .pkg-why__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.pkg-why__card:nth-child(6n+5) .pkg-why__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pkg-why__card:nth-child(6n+6) .pkg-why__card-icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }

.pkg-why__card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.pkg-why__card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--pkg-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pkg-why__card-desc {
    font-size: 15px;
    color: #3d4654;
    line-height: 1.9;
    font-weight: 500;
}

/* =====================================================
   SECTION 7: PROCESS STEPS
   ===================================================== */
.pkg-steps {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative dots on right */
.pkg-steps::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 300px;
    bottom: 40px;
    right: 0;
    background-image: radial-gradient(circle, rgba(39,174,96,0.12) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

.pkg-steps .container {
    position: relative;
    z-index: 1;
}

.pkg-steps__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 60px;
}

.pkg-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pkg-steps__card {
    background: #fff;
    border-radius: var(--pkg-card-radius);
    padding: 36px 24px 32px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--pkg-transition);
    position: relative;
    overflow: hidden;
}

.pkg-steps__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    border-radius: 24px 24px 0 0;
}

.pkg-steps__card:nth-child(1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pkg-steps__card:nth-child(2)::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.pkg-steps__card:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pkg-steps__card:nth-child(4)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.pkg-steps__card:nth-child(5)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.pkg-steps__card:nth-child(6)::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

.pkg-steps__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pkg-steps__card:nth-child(1):hover { border-color: rgba(59,130,246,0.3); }
.pkg-steps__card:nth-child(2):hover { border-color: rgba(39,174,96,0.3); }
.pkg-steps__card:nth-child(3):hover { border-color: rgba(245,158,11,0.3); }
.pkg-steps__card:nth-child(4):hover { border-color: rgba(124,58,237,0.3); }

.pkg-steps__card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 42px;
    font-weight: 900;
    color: rgba(47,90,174,0.06);
    line-height: 1;
}

.pkg-steps__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.pkg-steps__card-icon svg {
    width: 34px;
    height: 34px;
}

.pkg-steps__card:nth-child(1) .pkg-steps__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-steps__card:nth-child(1) .pkg-steps__card-icon svg { stroke: #3b82f6; }
.pkg-steps__card:nth-child(2) .pkg-steps__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-steps__card:nth-child(2) .pkg-steps__card-icon svg { stroke: #27ae60; }
.pkg-steps__card:nth-child(3) .pkg-steps__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.pkg-steps__card:nth-child(3) .pkg-steps__card-icon svg { stroke: #f59e0b; }
.pkg-steps__card:nth-child(4) .pkg-steps__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.pkg-steps__card:nth-child(4) .pkg-steps__card-icon svg { stroke: #7c3aed; }
.pkg-steps__card:nth-child(5) .pkg-steps__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.pkg-steps__card:nth-child(5) .pkg-steps__card-icon svg { stroke: #ec4899; }
.pkg-steps__card:nth-child(6) .pkg-steps__card-icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.pkg-steps__card:nth-child(6) .pkg-steps__card-icon svg { stroke: #06b6d4; }

.pkg-steps__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pkg-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pkg-steps__card-desc {
    font-size: 15px;
    color: #3d4654;
    line-height: 1.9;
    font-weight: 500;
}

/* =====================================================
   SECTION 8: GALLERY
   ===================================================== */
.pkg-gallery {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    overflow: hidden;
}

.pkg-gallery__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pkg-gallery__carousel .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.pkg-gallery__carousel .swiper-pagination {
    position: relative;
    margin-top: 24px;
}

.pkg-gallery__carousel .swiper-pagination-bullet-active {
    background: var(--pkg-brand);
}

.pkg-gallery__carousel .swiper-button-prev,
.pkg-gallery__carousel .swiper-button-next {
    color: var(--pkg-brand);
}

/* =====================================================
   SECTION 9: TESTIMONIALS
   ===================================================== */
.pkg-testimonials {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.pkg-testimonials__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pkg-testimonials__card {
    background: var(--pkg-light-bg);
    border-radius: var(--pkg-card-radius);
    padding: 36px 28px;
    border: 1px solid #e8ecf1;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-testimonials__card-quote {
    color: var(--pkg-brand);
    margin-bottom: 16px;
}

.pkg-testimonials__card-text {
    font-size: 16px;
    color: var(--pkg-text);
    line-height: 1.9;
    flex: 1;
    margin-bottom: 20px;
}

.pkg-testimonials__card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #e8ecf1;
    padding-top: 16px;
}

.pkg-testimonials__card-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.pkg-testimonials__card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pkg-brand), var(--pkg-brand-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

.pkg-testimonials__card-author strong {
    display: block;
    font-size: 16px;
    color: var(--pkg-dark);
}

.pkg-testimonials__card-author span {
    font-size: 13px;
    color: var(--pkg-text-light);
}

.pkg-testimonials__carousel .swiper-pagination {
    position: relative;
    margin-top: 24px;
}

.pkg-testimonials__carousel .swiper-pagination-bullet-active {
    background: var(--pkg-brand);
}

/* =====================================================
   SECTION 10: FAQ
   ===================================================== */
.pkg-faq {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    overflow: hidden;
}

.pkg-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.pkg-faq__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
}

.pkg-faq__grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Card */
.pkg-faq__card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #e8ecf1;
    overflow: hidden;
    transition: var(--pkg-transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pkg-faq__card:hover {
    border-color: #d0d8e8;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pkg-faq__card.active {
    border-color: var(--pkg-brand);
    box-shadow: 0 12px 40px rgba(47,90,174,0.12);
}

/* Question */
.pkg-faq__q {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
}

.pkg-faq__q-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pkg-transition);
}

.pkg-faq__q-icon svg {
    stroke: var(--pkg-brand);
    transition: var(--pkg-transition);
}

.pkg-faq__card.active .pkg-faq__q-icon {
    background: linear-gradient(135deg, var(--pkg-brand), var(--pkg-brand-light));
}

.pkg-faq__card.active .pkg-faq__q-icon svg {
    stroke: #fff;
}

.pkg-faq__q-text {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: var(--pkg-dark);
    transition: var(--pkg-transition);
}

.pkg-faq__q:hover .pkg-faq__q-text {
    color: var(--pkg-brand);
}

.pkg-faq__q-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--pkg-transition);
}

.pkg-faq__q-arrow svg {
    transition: transform 0.3s ease;
    color: var(--pkg-text-light);
}

.pkg-faq__card.active .pkg-faq__q-arrow {
    background: var(--pkg-brand);
}

.pkg-faq__card.active .pkg-faq__q-arrow svg {
    transform: rotate(180deg);
    color: #fff;
}

/* Answer */
.pkg-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-faq__a p {
    padding: 15px 0;
    padding-right: 88px;
    font-size: 16px;
    color: #3d4654;
    line-height: 2;
    font-weight: 500;
}

/* CTA inside first FAQ answer */
.pkg-faq__a-cta {
    padding: 8px 0 8px 0;
    padding-right: 88px;
}

.pkg-faq__a-cta .pkg-btn {
    font-size: 15px;
    padding: 12px 28px;
}

@media (max-width: 767px) {
    .pkg-faq__a-cta { padding-right: 0; }
}

/* CTA under FAQ */
.pkg-faq__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pkg-faq__cta span {
    font-size: 18px;
    font-weight: 700;
    color: var(--pkg-dark);
}

/* =====================================================
   SECTION 11: CTA
   ===================================================== */
.pkg-cta {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--pkg-dark);
    overflow: hidden;
}

.pkg-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,26,42,0.92), rgba(47,90,174,0.85));
}

.pkg-cta .container {
    position: relative;
    z-index: 1;
}

.pkg-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pkg-cta__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pkg-cta__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* =====================================================
   SECTION 12: CONTACT
   ===================================================== */
.pkg-contact {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    overflow: hidden;
}

.pkg-contact__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pkg-contact__shape {
    position: absolute;
    border-radius: 50%;
}

.pkg-contact__shape--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47,90,174,0.06), transparent 70%);
    top: -80px;
    right: -80px;
}

.pkg-contact__shape--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(39,174,96,0.06), transparent 70%);
    bottom: -60px;
    left: -60px;
}

.pkg-contact .container {
    position: relative;
    z-index: 1;
}

.pkg-contact__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--pkg-dark);
    text-align: center;
    margin-bottom: 12px;
}

.pkg-contact__subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--pkg-text-light);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* WhatsApp CTA Card */
.pkg-contact__wa-card {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 28px 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: var(--pkg-card-radius);
    box-shadow: 0 15px 50px rgba(37,211,102,0.25);
    position: relative;
    overflow: hidden;
}

.pkg-contact__wa-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.pkg-contact__wa-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.pkg-contact__wa-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pkg-contact__wa-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.pkg-contact__wa-text {
    flex: 1;
}

.pkg-contact__wa-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.pkg-contact__wa-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.pkg-contact__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background: #fff;
    color: #128c7e;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pkg-transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.pkg-contact__wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #128c7e;
}

/* Contact Cards */
.pkg-contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pkg-contact__card {
    background: #fff;
    border-radius: var(--pkg-card-radius);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: var(--pkg-transition);
    position: relative;
    overflow: hidden;
}

.pkg-contact__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 4px;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--pkg-transition);
}

.pkg-contact__card:nth-child(1)::after { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.pkg-contact__card:nth-child(2)::after { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.pkg-contact__card:nth-child(3)::after { background: linear-gradient(90deg, #7c3aed, #a855f7); }

.pkg-contact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}

.pkg-contact__card:hover::after {
    opacity: 1;
}

.pkg-contact__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.pkg-contact__card-icon--phone { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.pkg-contact__card-icon--email { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.pkg-contact__card-icon--web   { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }

.pkg-contact__card-icon svg {
    width: 28px;
    height: 28px;
}

.pkg-contact__card-icon--phone svg { stroke: #3b82f6; }
.pkg-contact__card-icon--email svg { stroke: #27ae60; }
.pkg-contact__card-icon--web svg   { stroke: #7c3aed; }

.pkg-contact__card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--pkg-dark);
    margin-bottom: 10px;
}

.pkg-contact__card a {
    font-size: 15px;
    color: var(--pkg-text-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--pkg-transition);
}

.pkg-contact__card:hover a {
    color: var(--pkg-brand);
}

.pkg-contact__map {
    margin-top: 40px;
    border-radius: var(--pkg-card-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-height: 350px;
}

.pkg-contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* =====================================================
   SECTION 13: BOOKING FORM
   ===================================================== */
.pkg-booking {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a0f1e 0%, #152238 40%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.pkg-booking__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pkg-booking__shape {
    position: absolute;
    border-radius: 50%;
}

.pkg-booking__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39,174,96,0.12), transparent 70%);
    top: -150px;
    right: -150px;
    animation: pkg-float 20s ease-in-out infinite;
}

.pkg-booking__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47,90,174,0.1), transparent 70%);
    bottom: -120px;
    left: -120px;
    animation: pkg-float 25s ease-in-out infinite reverse;
}

.pkg-booking__shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168,85,247,0.08), transparent 70%);
    top: 40%;
    left: 10%;
    animation: pkg-float 18s ease-in-out infinite 3s;
}

/* Floating icons */
.pkg-booking__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pkg-booking__float {
    position: absolute;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    animation: pkg-icon-float 8s ease-in-out infinite;
}

.pkg-booking__float svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255,255,255,0.25);
}

.pkg-booking__float--1 { top: 15%; left: 6%; animation-delay: 0s; }
.pkg-booking__float--2 { bottom: 20%; right: 5%; animation-delay: 2s; }
.pkg-booking__float--3 { top: 60%; left: 85%; animation-delay: 1s; width: 38px; height: 38px; }

.pkg-booking .container {
    position: relative;
    z-index: 1;
}

.pkg-booking__wrap {
    max-width: 720px;
    margin: 0 auto;
}

.pkg-booking__header {
    text-align: center;
    margin-bottom: 40px;
}

.pkg-booking__header .section-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.pkg-booking__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.pkg-booking__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Form card */
.pkg-booking__card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 40px 36px;
}

/* Form grid */
.pkg-booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.pkg-booking__grid--quick {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    margin: 0 auto 28px;
}

.pkg-booking__field--full {
    grid-column: 1 / -1;
}

/* Labels */
.pkg-booking__field label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.pkg-booking__field label span {
    color: #ef4444;
}

/* Input wrapper — icon on LEFT (end in RTL) */
.pkg-booking__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pkg-booking__input-wrap svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.35);
    pointer-events: none;
    z-index: 1;
}

.pkg-booking__input-wrap input,
.pkg-booking__input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-family: 'Tajawal', sans-serif;
    transition: var(--pkg-transition);
    outline: none;
}

.pkg-booking__input-wrap input::placeholder,
.pkg-booking__input-wrap textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.pkg-booking__input-wrap input:focus,
.pkg-booking__input-wrap textarea:focus {
    border-color: var(--pkg-green);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(39,174,96,0.15);
}

.pkg-booking__input-wrap--textarea svg {
    top: 16px;
}

.pkg-booking__input-wrap textarea {
    resize: vertical;
    min-height: 90px;
}

/* Submit button */
.pkg-booking__submit {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 18px 40px;
}

.pkg-booking__submit-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pkg-booking__submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes pkg-spin {
    to { transform: rotate(360deg); }
}

.pkg-spin {
    animation: pkg-spin 1s linear infinite;
}

/* Messages */
.pkg-booking__message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.pkg-booking__message--success {
    background: rgba(39,174,96,0.15);
    color: #5be8a0;
    border: 1px solid rgba(39,174,96,0.3);
}

.pkg-booking__message--error {
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.3);
}

/* "Book Now" scroll button used in other sections */
.pkg-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--pkg-green), var(--pkg-green2));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pkg-transition);
    box-shadow: 0 6px 20px rgba(39,174,96,0.25);
}

.pkg-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39,174,96,0.4);
    color: #fff;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1199px) {
    .pkg-pricing__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .pkg-overview__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkg-overview__image {
        order: -1;
    }

    .pkg-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-pricing__grid--3,
    .pkg-pricing__grid--4,
    .pkg-pricing__grid--5,
    .pkg-pricing__grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-pricing__card--featured {
        transform: scale(1);
    }

    .pkg-pricing__card--featured:hover {
        transform: translateY(-10px);
    }

    .pkg-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-contact__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pkg-contact__wa-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .pkg-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {
    .pkg-hero {
        min-height: 520px;
        padding: 110px 0 90px;
    }

    .pkg-hero__wave svg {
        height: 40px;
    }

    .pkg-hero__float-icon { display: none; }

    .pkg-hero__actions {
        flex-direction: column;
    }

    .pkg-stats {
        margin-top: -30px;
    }

    .pkg-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pkg-stats__item {
        padding: 18px 16px;
    }

    .pkg-services__grid,
    .pkg-why__grid {
        grid-template-columns: 1fr;
    }

    .pkg-pricing__grid--2,
    .pkg-pricing__grid--3,
    .pkg-pricing__grid--4,
    .pkg-pricing__grid--5,
    .pkg-pricing__grid--6 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pkg-pricing__card-features {
        grid-template-columns: 1fr;
    }

    .pkg-pricing__float { display: none; }

    .pkg-gallery__carousel .swiper-slide img {
        height: 220px;
    }

    .pkg-overview .section-badge {
        text-align: center;
        margin: 0 auto 16px;
    }

    .pkg-steps__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pkg-faq__q-icon {
        width: 36px;
        height: 36px;
    }

    .pkg-contact__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pkg-contact__wa-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .pkg-booking__grid {
        grid-template-columns: 1fr;
    }

    .pkg-booking__grid--quick {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pkg-stats__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pkg-hero__title {
        font-size: 28px;
    }

    .pkg-btn--lg {
        padding: 14px 32px;
        font-size: 16px;
    }

    .pkg-hero__badge {
        font-size: 12px;
        padding: 6px 18px;
    }
}
