/* ============================================================
   Ads Packages Page — ads-packages.css
   Rewritten to match template-ads-packages.php class names
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --ap-brand: #2f5aae;
    --ap-green: #27ae60;
    --ap-green2: #2ecc71;
    --ap-dark: #0a0f1e;
    --ap-light: #f4f5f7;
    --ap-text: #272626;
    --ap-text-light: #3d4654;
    --ap-white: #fff;
}

/* ── Shared Transition ── */
.ap-hero,
.ap-social,
.ap-startup,
.ap-insta,
.ap-ecom,
.ap-google,
.ap-tiktok,
.ap-app,
.ap-snap,
.ap-adpkg,
.ap-contact {
    position: relative;
    overflow: hidden;
}

/* ── Section Badge (shared) ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(47, 90, 174, 0.1), rgba(47, 90, 174, 0.05));
    color: var(--ap-brand);
    border: 1px solid rgba(47, 90, 174, 0.15);
}

/* Badge in dark sections */
.ap-hero .section-badge,
.ap-startup .section-badge,
.ap-google .section-badge,
.ap-snap .section-badge,
.ap-tiktok .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ap-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* ── Shared Buttons ── */
.ap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ap-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ap-btn:hover::after {
    opacity: 1;
}

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

.ap-btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(39, 174, 96, 0.4);
}

.ap-btn--outline {
    background: transparent;
    color: var(--ap-brand);
    border: 2px solid var(--ap-brand);
    box-shadow: none;
}

.ap-btn--outline:hover {
    background: var(--ap-brand);
    color: var(--ap-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(47, 90, 174, 0.3);
}

/* Dark section outline button override */
.ap-startup .ap-btn--outline,
.ap-google .ap-btn--outline,
.ap-snap .ap-btn--outline,
.ap-tiktok .ap-btn--outline {
    color: var(--ap-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.ap-startup .ap-btn--outline:hover,
.ap-google .ap-btn--outline:hover,
.ap-snap .ap-btn--outline:hover,
.ap-tiktok .ap-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ap-white);
}


/* ============================================================
   1. HERO SECTION
   ============================================================ */
.ap-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--ap-dark);
    background-size: cover;
    background-position: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.ap-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.ap-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 26, 42, 0.92), rgba(47, 90, 174, 0.85));
    z-index: 1;
}

/* Decorative shapes */
.ap-hero__shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.ap-hero__shape--1 {
    width: 500px;
    height: 500px;
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(47, 90, 174, 0.25), transparent 70%);
}

.ap-hero__shape--2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.2), transparent 70%);
}

.ap-hero__shape--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15), transparent 70%);
}

.ap-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.ap-hero__content {
    z-index: 2;
}

.ap-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--ap-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ap-hero__title span {
    background: linear-gradient(135deg, var(--ap-green), var(--ap-green2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-hero__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.9;
}

.ap-hero__image {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}


/* ============================================================
   2. SOCIAL MEDIA SECTION
   ============================================================ */
.ap-social {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.ap-social::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, var(--ap-brand), #6c5ce7);
}

.ap-social .container {
    text-align: center;
}

.ap-social__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-social__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Social service cards — vibrant colored backgrounds */
.ap-social__card {
    position: relative;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: none;
    color: var(--ap-white);
}

.ap-social__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.ap-social__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-social__card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.ap-social__card-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--ap-white);
    line-height: 1;
}

.ap-social__card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--ap-white);
    margin: 0;
}

/* 11 distinct vibrant colors */
.ap-social__card:nth-child(1)  { background: linear-gradient(135deg, #009688, #26a69a); }
.ap-social__card:nth-child(2)  { background: linear-gradient(135deg, #00bcd4, #26c6da); }
.ap-social__card:nth-child(3)  { background: linear-gradient(135deg, #7c4dff, #b388ff); }
.ap-social__card:nth-child(4)  { background: linear-gradient(135deg, #ff9800, #ffb74d); }
.ap-social__card:nth-child(5)  { background: linear-gradient(135deg, #6a1b9a, #9c27b0); }
.ap-social__card:nth-child(6)  { background: linear-gradient(135deg, #00695c, #00897b); }
.ap-social__card:nth-child(7)  { background: linear-gradient(135deg, #827717, #9e9d24); }
.ap-social__card:nth-child(8)  { background: linear-gradient(135deg, #546e7a, #78909c); }
.ap-social__card:nth-child(9)  { background: linear-gradient(135deg, #e64a19, #ff7043); }
.ap-social__card:nth-child(10) { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.ap-social__card:nth-child(11) { background: linear-gradient(135deg, #558b2f, #7cb342); }

.ap-social__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   3. STARTUP SECTION
   ============================================================ */
.ap-startup {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--ap-white);
    position: relative;
    overflow: hidden;
}

.ap-startup__overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(47, 90, 174, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(39, 174, 96, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

.ap-startup__shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.ap-startup__shape--1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15), transparent 70%);
}

.ap-startup__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(47, 90, 174, 0.12), transparent 70%);
}

.ap-startup__shape--3 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 40%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1), transparent 70%);
}

.ap-startup__shape--4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    background: radial-gradient(circle, rgba(253, 203, 110, 0.08), transparent 70%);
}

.ap-startup .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ap-startup__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-white);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-startup__features {
    list-style: none;
    padding: 0;
    margin: 0 auto 48px;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: right;
}

.ap-startup__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ap-startup__feature:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.ap-startup__check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--ap-white);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--ap-green), var(--ap-green2));
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.35);
}

.ap-startup__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


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

.ap-insta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.ap-insta::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.08), rgba(253, 29, 29, 0.06), rgba(252, 176, 69, 0.05));
    z-index: 0;
    pointer-events: none;
    filter: blur(20px);
}

.ap-insta .container {
    text-align: center;
}

.ap-insta__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #833ab4;
}

.ap-insta__logo svg {
    width: 72px;
    height: 72px;
}

.ap-insta__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.ap-insta__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ap-text-light);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.ap-insta__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    text-align: right;
}

.ap-insta__card {
    position: relative;
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ap-insta__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    opacity: 1;
}

.ap-insta__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

.ap-insta__card:nth-child(1)::before { background: linear-gradient(135deg, #833ab4, #c13584); }
.ap-insta__card:nth-child(2)::before { background: linear-gradient(135deg, #fd1d1d, #f56040); }
.ap-insta__card:nth-child(3)::before { background: linear-gradient(135deg, #fcb045, #f77737); }
.ap-insta__card:nth-child(4)::before { background: linear-gradient(135deg, #405de6, #5851db); }

/* Instagram-colored side accent per card */
.ap-insta__card::after {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    right: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ap-insta__card:hover::after {
    opacity: 1;
}

.ap-insta__card:nth-child(1)::after { background: linear-gradient(180deg, #833ab4, #c13584); }
.ap-insta__card:nth-child(2)::after { background: linear-gradient(180deg, #fd1d1d, #f56040); }
.ap-insta__card:nth-child(3)::after { background: linear-gradient(180deg, #fcb045, #f77737); }
.ap-insta__card:nth-child(4)::after { background: linear-gradient(180deg, #405de6, #5851db); }

/* Subtle gradient bg per card */
.ap-insta__card:nth-child(1) { background: linear-gradient(160deg, #fff 60%, rgba(131, 58, 180, 0.04)); }
.ap-insta__card:nth-child(2) { background: linear-gradient(160deg, #fff 60%, rgba(253, 29, 29, 0.04)); }
.ap-insta__card:nth-child(3) { background: linear-gradient(160deg, #fff 60%, rgba(252, 176, 69, 0.04)); }
.ap-insta__card:nth-child(4) { background: linear-gradient(160deg, #fff 60%, rgba(64, 93, 230, 0.04)); }

.ap-insta__card-name {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #833ab4;
    margin-bottom: 8px;
}

.ap-insta__card-views {
    font-size: 0.95rem;
    color: var(--ap-text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ap-insta__card-views::before {
    content: "\1F441";
    font-size: 16px;
}

.ap-insta__card-price {
    margin-bottom: 20px;
}

.ap-insta__card-amount {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--ap-green);
}

.ap-insta__card-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ap-text-light);
    margin-right: 6px;
}

.ap-insta__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.ap-insta__card-features li {
    position: relative;
    padding: 8px 32px 8px 0;
    font-size: 0.95rem;
    color: var(--ap-text);
    line-height: 1.8;
}

.ap-insta__card-features li::before {
    content: "\2713";
    position: absolute;
    right: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ap-green), var(--ap-green2));
    color: var(--ap-white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ap-insta__card .ap-btn {
    margin-top: auto;
    align-self: flex-start;
}

.ap-insta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   5. E-COMMERCE SECTION
   ============================================================ */
.ap-ecom {
    padding: 100px 0;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.ap-ecom::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, var(--ap-brand), #0984e3);
}

.ap-ecom .container {
    text-align: center;
}

.ap-ecom__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-ecom__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.ap-ecom__card {
    position: relative;
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 24px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ap-ecom__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    opacity: 1;
}

.ap-ecom__card:nth-child(1)::before { background: linear-gradient(135deg, #2f5aae, #6c5ce7); }
.ap-ecom__card:nth-child(2)::before { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.ap-ecom__card:nth-child(3)::before { background: linear-gradient(135deg, #e17055, #fdcb6e); }
.ap-ecom__card:nth-child(4)::before { background: linear-gradient(135deg, #00b894, #00cec9); }
.ap-ecom__card:nth-child(5)::before { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.ap-ecom__card:nth-child(6)::before { background: linear-gradient(135deg, #fd79a8, #e84393); }
.ap-ecom__card:nth-child(7)::before { background: linear-gradient(135deg, #fdcb6e, #f39c12); }
.ap-ecom__card:nth-child(8)::before { background: linear-gradient(135deg, #00cec9, #0984e3); }

.ap-ecom__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

/* Numbered badge */
.ap-ecom__card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: var(--ap-white);
    z-index: 2;
}

.ap-ecom__card:nth-child(1) .ap-ecom__card-num { background: linear-gradient(135deg, #2f5aae, #6c5ce7); }
.ap-ecom__card:nth-child(2) .ap-ecom__card-num { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.ap-ecom__card:nth-child(3) .ap-ecom__card-num { background: linear-gradient(135deg, #e17055, #fdcb6e); }
.ap-ecom__card:nth-child(4) .ap-ecom__card-num { background: linear-gradient(135deg, #00b894, #00cec9); }
.ap-ecom__card:nth-child(5) .ap-ecom__card-num { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.ap-ecom__card:nth-child(6) .ap-ecom__card-num { background: linear-gradient(135deg, #fd79a8, #e84393); }
.ap-ecom__card:nth-child(7) .ap-ecom__card-num { background: linear-gradient(135deg, #fdcb6e, #f39c12); }
.ap-ecom__card:nth-child(8) .ap-ecom__card-num { background: linear-gradient(135deg, #00cec9, #0984e3); }

.ap-ecom__card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ap-ecom__card:hover .ap-ecom__card-icon {
    transform: scale(1.08);
}

.ap-ecom__card:nth-child(1) .ap-ecom__card-icon { background: #dbeafe; }
.ap-ecom__card:nth-child(2) .ap-ecom__card-icon { background: #d1fae5; }
.ap-ecom__card:nth-child(3) .ap-ecom__card-icon { background: #fef3c7; }
.ap-ecom__card:nth-child(4) .ap-ecom__card-icon { background: #fce4ec; }
.ap-ecom__card:nth-child(5) .ap-ecom__card-icon { background: #e0e7ff; }
.ap-ecom__card:nth-child(6) .ap-ecom__card-icon { background: #ecfeff; }
.ap-ecom__card:nth-child(7) .ap-ecom__card-icon { background: #fef3c7; }
.ap-ecom__card:nth-child(8) .ap-ecom__card-icon { background: #dbeafe; }

.ap-ecom__card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ap-ecom__card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--ap-dark);
    margin: 0;
}

.ap-ecom__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   6. GOOGLE ADS SECTION
   ============================================================ */
.ap-google {
    padding: 100px 0;
    background: linear-gradient(160deg, #0c1a2a 0%, #132d4a 50%, #0c1a2a 100%);
    color: var(--ap-white);
    position: relative;
    overflow: hidden;
}

.ap-google__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(66, 133, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(234, 67, 53, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(251, 188, 5, 0.06) 0%, transparent 30%);
    z-index: 0;
    pointer-events: none;
}

/* Google-colored decorative dots */
.ap-google__overlay::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    background: rgba(66, 133, 244, 0.25);
    box-shadow:
        -60px 40px 0 rgba(234, 67, 53, 0.2),
        -120px -20px 0 8px rgba(251, 188, 5, 0.15),
        60px 80px 0 6px rgba(52, 168, 83, 0.18),
        -200px 60px 0 4px rgba(66, 133, 244, 0.12),
        40px -60px 0 10px rgba(234, 67, 53, 0.1);
}

.ap-google__overlay::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    bottom: 15%;
    left: 8%;
    background: rgba(52, 168, 83, 0.2);
    box-shadow:
        80px -30px 0 6px rgba(251, 188, 5, 0.18),
        160px 20px 0 rgba(66, 133, 244, 0.15),
        40px 50px 0 8px rgba(234, 67, 53, 0.12);
}

.ap-google .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ap-google__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ap-google__logo svg {
    width: 56px;
    height: 56px;
}

.ap-google__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-white);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-google__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    text-align: right;
}

.ap-google__card {
    position: relative;
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: var(--ap-text);
}

.ap-google__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    opacity: 1;
}

.ap-google__card:nth-child(1)::before { background: linear-gradient(135deg, #4285f4, #5b9cf6); height: 5px; }
.ap-google__card:nth-child(2)::before { background: linear-gradient(135deg, #ea4335, #f56040); height: 5px; }
.ap-google__card:nth-child(3)::before { background: linear-gradient(135deg, #fbbc05, #fdd835); height: 5px; }
.ap-google__card:nth-child(4)::before { background: linear-gradient(135deg, #34a853, #46c768); height: 5px; }

.ap-google__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(66, 133, 244, 0.18);
    border-color: transparent;
}

.ap-google__card-name {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 900;
    color: var(--ap-dark);
    margin-bottom: 12px;
}

.ap-google__card-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(66, 133, 244, 0.05));
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.15);
}

.ap-google__card-prices {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.ap-google__card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid #e8ecf1;
    border-radius: 8px;
    transition: background 0.2s ease;
    position: relative;
    margin-bottom: 2px;
}

.ap-google__card-price::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 3px;
    background: var(--ap-green);
}

.ap-google__card-price:first-child::before {
    background: var(--ap-green);
}

.ap-google__card-price:last-child::before {
    background: #f39c12;
}

.ap-google__card-price:last-child {
    border-bottom: none;
}

.ap-google__card-price:hover {
    background: rgba(66, 133, 244, 0.04);
}

.ap-google__card-label {
    color: var(--ap-text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.ap-google__card-amount {
    font-weight: 900;
    color: var(--ap-green);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

.ap-google__card-currency {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ap-text-light);
    margin-right: 4px;
}

.ap-google__card .ap-btn {
    margin-top: 8px;
}

.ap-google__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   7. TIKTOK SECTION
   ============================================================ */
.ap-tiktok {
    padding: 100px 0;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a2e 40%, #16213e 80%, #0d0d0d 100%);
    color: var(--ap-white);
}

.ap-tiktok::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, #010101, #69c9d0, #ee1d52);
}

.ap-tiktok .container {
    text-align: center;
}

.ap-tiktok__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.ap-tiktok__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.ap-tiktok__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    text-align: right;
}

.ap-tiktok__card {
    position: relative;
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 44px 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.ap-tiktok__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

/* Colorful corner accents */
.ap-tiktok__card::before,
.ap-tiktok__card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 18px;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.ap-tiktok__card:nth-child(1)::before {
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    transform: rotate(-8deg);
}
.ap-tiktok__card:nth-child(1)::after {
    bottom: -12px;
    left: -12px;
    background: linear-gradient(135deg, #fdcb6e, #f39c12);
    transform: rotate(-8deg);
}

.ap-tiktok__card:nth-child(2)::before {
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    transform: rotate(-8deg);
}
.ap-tiktok__card:nth-child(2)::after {
    bottom: -12px;
    left: -12px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    transform: rotate(-8deg);
}

.ap-tiktok__card:nth-child(3)::before {
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #fdcb6e, #f1c40f);
    transform: rotate(-8deg);
}
.ap-tiktok__card:nth-child(3)::after {
    bottom: -12px;
    left: -12px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    transform: rotate(-8deg);
}

.ap-tiktok__card:nth-child(4)::before {
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    transform: rotate(-8deg);
}
.ap-tiktok__card:nth-child(4)::after {
    bottom: -12px;
    left: -12px;
    background: linear-gradient(135deg, #e84393, #fd79a8);
    transform: rotate(-8deg);
}

.ap-tiktok__card:hover::before,
.ap-tiktok__card:hover::after {
    opacity: 1;
    transform: rotate(-4deg) scale(1.1);
}

.ap-tiktok__card-num {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--ap-white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #010101, #333);
}

.ap-tiktok__card:nth-child(odd) .ap-tiktok__card-num {
    background: linear-gradient(135deg, #69c9d0, #25f4ee);
    color: #010101;
}

.ap-tiktok__card:nth-child(even) .ap-tiktok__card-num {
    background: linear-gradient(135deg, #ee1d52, #ff3366);
    color: var(--ap-white);
}

.ap-tiktok__card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.ap-tiktok__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ap-tiktok__card-name {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 900;
    color: var(--ap-dark);
    margin-bottom: 8px;
}

.ap-tiktok__card-price {
    margin-bottom: 20px;
}

.ap-tiktok__card-amount {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #ee1d52;
}

.ap-tiktok__card-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ap-text-light);
    margin-right: 6px;
}

.ap-tiktok__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.ap-tiktok__card-features li {
    position: relative;
    padding: 8px 32px 8px 0;
    font-size: 0.95rem;
    color: var(--ap-text);
    line-height: 1.8;
}

.ap-tiktok__card-features li::before {
    content: "\2713";
    position: absolute;
    right: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #69c9d0, #25f4ee);
    color: #010101;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ap-tiktok__card:nth-child(even) .ap-tiktok__card-features li::before {
    background: linear-gradient(135deg, #ee1d52, #ff3366);
    color: var(--ap-white);
}

.ap-tiktok__card .ap-btn {
    margin-top: auto;
    align-self: flex-start;
}

.ap-tiktok__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   8. APP MARKETING SECTION
   ============================================================ */
.ap-app {
    padding: 100px 0;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.ap-app::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.ap-app .container {
    text-align: center;
}

.ap-app__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-app__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ap-app__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 20px;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--ap-white);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ap-app__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.08);
}

.ap-app__card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.ap-app__card:hover .ap-app__card-icon {
    transform: scale(1.1);
}

.ap-app__card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ap-app__card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ap-white);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}

.ap-app__card:nth-child(1)  { background: linear-gradient(135deg, #e84393, #fd79a8); }
.ap-app__card:nth-child(2)  { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.ap-app__card:nth-child(3)  { background: linear-gradient(135deg, #00b894, #55efc4); }
.ap-app__card:nth-child(4)  { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.ap-app__card:nth-child(5)  { background: linear-gradient(135deg, #fdcb6e, #f39c12); }
.ap-app__card:nth-child(6)  { background: linear-gradient(135deg, #e17055, #fab1a0); }
.ap-app__card:nth-child(7)  { background: linear-gradient(135deg, #00cec9, #81ecec); }
.ap-app__card:nth-child(8)  { background: linear-gradient(135deg, #2d3436, #636e72); }
.ap-app__card:nth-child(9)  { background: linear-gradient(135deg, #d63031, #ff7675); }
.ap-app__card:nth-child(10) { background: linear-gradient(135deg, #1e3799, #4a69bd); }
.ap-app__card:nth-child(11) { background: linear-gradient(135deg, #b71540, #e55039); }
.ap-app__card:nth-child(12) { background: linear-gradient(135deg, #079992, #38ada9); }

.ap-app__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   9. SNAPCHAT SECTION
   ============================================================ */
.ap-snap {
    padding: 100px 0;
    background: linear-gradient(160deg, #0c1a2a 0%, #1a2d4a 50%, #0c1a2a 100%);
    color: var(--ap-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ap-snap__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 252, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(47, 90, 174, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.ap-snap .container {
    position: relative;
    z-index: 2;
}

.ap-snap__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-white);
    margin-bottom: 40px;
    line-height: 1.25;
}

.ap-snap__banner {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ap-snap__banner img {
    width: 100%;
    height: auto;
    display: block;
}

.ap-snap__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


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

.ap-adpkg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, #f39c12, #fdcb6e);
}

.ap-adpkg .container {
    text-align: center;
}

.ap-adpkg__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-adpkg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: right;
}

.ap-adpkg__card {
    position: relative;
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 44px 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.ap-adpkg__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    opacity: 1;
}

.ap-adpkg__card:nth-child(1)::before { background: linear-gradient(135deg, #f39c12, #fdcb6e); height: 5px; }
.ap-adpkg__card:nth-child(2)::before { background: linear-gradient(135deg, #27ae60, #2ecc71); height: 5px; }
.ap-adpkg__card:nth-child(3)::before { background: linear-gradient(135deg, #0984e3, #74b9ff); height: 5px; }

.ap-adpkg__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

/* Colored corner accents via ::after on card (using box-shadow trick with separate elements) */
.ap-adpkg__card::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-8deg);
    bottom: -10px;
    left: -10px;
}

.ap-adpkg__card:nth-child(1)::after { background: linear-gradient(135deg, #f39c12, #fdcb6e); }
.ap-adpkg__card:nth-child(2)::after { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.ap-adpkg__card:nth-child(3)::after { background: linear-gradient(135deg, #0984e3, #74b9ff); }

/* Subtle gradient card backgrounds per tier */
.ap-adpkg__card:nth-child(1) { background: linear-gradient(160deg, #fff 65%, rgba(243, 156, 18, 0.05)); }
.ap-adpkg__card:nth-child(2) { background: linear-gradient(160deg, #fff 65%, rgba(39, 174, 96, 0.05)); }
.ap-adpkg__card:nth-child(3) { background: linear-gradient(160deg, #fff 65%, rgba(9, 132, 227, 0.05)); }

.ap-adpkg__card:hover::after {
    opacity: 1;
    transform: rotate(-4deg) scale(1.1);
}

.ap-adpkg__card-star {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(243, 156, 18, 0.1);
    transition: transform 0.3s ease;
}

.ap-adpkg__card:hover .ap-adpkg__card-star {
    transform: scale(1.1) rotate(5deg);
}

.ap-adpkg__card-star svg {
    width: 30px;
    height: 30px;
    color: #f39c12;
}

/* Star colors per tier: gold, green, blue */
.ap-adpkg__card:nth-child(1) .ap-adpkg__card-star {
    background: rgba(243, 156, 18, 0.12);
}
.ap-adpkg__card:nth-child(1) .ap-adpkg__card-star svg {
    color: #f39c12;
}

.ap-adpkg__card:nth-child(2) .ap-adpkg__card-star {
    background: rgba(39, 174, 96, 0.12);
}
.ap-adpkg__card:nth-child(2) .ap-adpkg__card-star svg {
    color: var(--ap-green);
}

.ap-adpkg__card:nth-child(3) .ap-adpkg__card-star {
    background: rgba(9, 132, 227, 0.12);
}
.ap-adpkg__card:nth-child(3) .ap-adpkg__card-star svg {
    color: #0984e3;
}

.ap-adpkg__card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.ap-adpkg__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ap-adpkg__card-name {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 900;
    color: var(--ap-dark);
    margin-bottom: 8px;
}

.ap-adpkg__card-price {
    margin-bottom: 20px;
}

.ap-adpkg__card-amount {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--ap-green);
}

.ap-adpkg__card-currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ap-text-light);
    margin-right: 6px;
}

.ap-adpkg__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.ap-adpkg__card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--ap-text);
    line-height: 1.8;
}

.ap-adpkg__card-features li svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--ap-green);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(39, 174, 96, 0.3));
}

.ap-adpkg__card:nth-child(1) .ap-adpkg__card-features li svg {
    color: #f39c12;
    filter: drop-shadow(0 2px 4px rgba(243, 156, 18, 0.3));
}

.ap-adpkg__card:nth-child(2) .ap-adpkg__card-features li svg {
    color: var(--ap-green);
}

.ap-adpkg__card:nth-child(3) .ap-adpkg__card-features li svg {
    color: #0984e3;
    filter: drop-shadow(0 2px 4px rgba(9, 132, 227, 0.3));
}

.ap-adpkg__card .ap-btn {
    margin-top: auto;
    align-self: flex-start;
}


/* ============================================================
   11. CONTACT SECTION
   ============================================================ */
.ap-contact {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.ap-contact::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 4px;
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, var(--ap-brand), var(--ap-green));
}

.ap-contact .container {
    text-align: center;
}

.ap-contact__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ap-dark);
    margin-bottom: 48px;
    line-height: 1.25;
}

.ap-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    text-align: right;
}

/* Contact info */
.ap-contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ap-contact__item {
    background: var(--ap-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 24px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.ap-contact__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

.ap-contact__item svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--ap-brand);
    flex-shrink: 0;
}

.ap-contact__item:nth-child(1) svg { color: var(--ap-brand); }
.ap-contact__item:nth-child(2) svg { color: #e17055; }
.ap-contact__item:nth-child(3) svg { color: var(--ap-green); }
.ap-contact__item:nth-child(4) svg { color: #00b894; }
.ap-contact__item:nth-child(5) svg { color: #6c5ce7; }

.ap-contact__item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ap-contact__item strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ap-text-light);
}

.ap-contact__item a,
.ap-contact__item span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ap-dark);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ap-contact__item a:hover {
    color: var(--ap-green);
}

/* Map */
.ap-contact__map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8ecf1;
    height: 100%;
    min-height: 380px;
}

.ap-contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    display: block;
}


/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
    .ap-social,
    .ap-startup,
    .ap-insta,
    .ap-ecom,
    .ap-google,
    .ap-tiktok,
    .ap-app,
    .ap-snap,
    .ap-adpkg,
    .ap-contact {
        padding: 80px 0;
    }

    /* Hero */
    .ap-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ap-hero__desc {
        margin: 0 auto 36px;
    }

    /* Social */
    .ap-social__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Instagram */
    .ap-insta__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* E-commerce */
    .ap-ecom__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Google */
    .ap-google__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* TikTok */
    .ap-tiktok__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Startup features */
    .ap-startup__features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    /* App */
    .ap-app__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Ad packages */
    .ap-adpkg__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .ap-contact__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}


/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    .ap-social,
    .ap-startup,
    .ap-insta,
    .ap-ecom,
    .ap-google,
    .ap-tiktok,
    .ap-app,
    .ap-snap,
    .ap-adpkg,
    .ap-contact {
        padding: 64px 0;
    }

    /* Hero */
    .ap-hero {
        min-height: auto;
        padding: 70px 0 60px;
    }

    .ap-hero__grid {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    .ap-hero__image {
        order: -1;
    }

    /* Social */
    .ap-social__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 48px;
    }

    /* Instagram */
    .ap-insta__grid {
        grid-template-columns: 1fr;
    }

    /* E-commerce */
    .ap-ecom__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 48px;
    }

    /* Google */
    .ap-google__grid {
        grid-template-columns: 1fr;
    }

    /* TikTok */
    .ap-tiktok__grid {
        grid-template-columns: 1fr;
    }

    .ap-tiktok__card {
        overflow: hidden;
    }

    .ap-tiktok__card::before,
    .ap-tiktok__card::after {
        display: none;
    }

    /* Startup features */
    .ap-startup__features {
        grid-template-columns: 1fr;
    }

    /* App */
    .ap-app__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto 48px;
    }

    /* Ad packages */
    .ap-adpkg__grid {
        grid-template-columns: 1fr;
    }

    .ap-adpkg__card {
        overflow: hidden;
    }

    .ap-adpkg__card::after {
        display: none;
    }

    /* Contact */
    .ap-contact__map {
        min-height: 300px;
    }

    .ap-contact__map iframe {
        min-height: 300px;
    }

    /* Buttons */
    .ap-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}


/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .ap-social,
    .ap-startup,
    .ap-insta,
    .ap-ecom,
    .ap-google,
    .ap-tiktok,
    .ap-app,
    .ap-snap,
    .ap-adpkg,
    .ap-contact {
        padding: 48px 0;
    }

    .ap-hero__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .ap-social__title,
    .ap-startup__title,
    .ap-insta__title,
    .ap-ecom__title,
    .ap-google__title,
    .ap-tiktok__title,
    .ap-app__title,
    .ap-snap__title,
    .ap-adpkg__title,
    .ap-contact__title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .ap-insta__card,
    .ap-google__card,
    .ap-tiktok__card,
    .ap-adpkg__card {
        padding: 28px 20px;
    }

    .ap-ecom__card {
        padding: 32px 16px 24px;
    }

    .ap-social__card {
        padding: 28px 16px;
    }

    /* App - single column on mobile */
    .ap-app__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .ap-app__card {
        padding: 24px 16px;
    }
}

/* ============================================================
   Card Logos (inside each package card)
   ============================================================ */
.ap-insta__card-logo {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.ap-insta__card-logo svg {
    width: 48px; height: 48px;
}

.ap-google__card-logo {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(66,133,244,0.08);
    border-radius: 16px; padding: 10px;
}
.ap-google__card-logo svg {
    width: 100%; height: 100%;
}

.ap-tiktok__card-logo {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
}
.ap-tiktok__card-logo svg {
    width: 40px; height: 40px;
}
.ap-tiktok__card:nth-child(odd) .ap-tiktok__card-logo { color: #69c9d0; }
.ap-tiktok__card:nth-child(even) .ap-tiktok__card-logo { color: #ee1d52; }
