/* ══════════════════════════════════════════════════════
   Online Brand Maker — Premium Digital Presence Design
   Enhanced UI with Golden & Blue Theme
   ══════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 20% 0%, #c8daf8 0%, #a8c5f0 20%, #e0ecff 40%),
        radial-gradient(ellipse at 80% 100%, #fff8e0 0%, #f0f7ff 60%),
        linear-gradient(180deg, #dde9fa 0%, #f8fbff 50%, #fff8e8 100%);
    color: #1e293b;
    overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #e8f0fe; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ffd700, #3b82f6); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #e8b500, #2563eb); }

/* ── SPARKLE PARTICLES ─────────────────────────────── */
.sparkles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.sparkles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: sparkle 6s infinite ease-in-out;
    opacity: 0;
}
.sparkles span:nth-child(1)  { width:6px; height:6px; background:#ffd700; left:5%; top:12%; animation-delay:0s; }
.sparkles span:nth-child(2)  { width:4px; height:4px; background:#60a5fa; left:15%; top:40%; animation-delay:1s; }
.sparkles span:nth-child(3)  { width:8px; height:8px; background:#ffd700; left:80%; top:10%; animation-delay:2s; }
.sparkles span:nth-child(4)  { width:5px; height:5px; background:#a5f3fc; left:70%; top:55%; animation-delay:0.5s; }
.sparkles span:nth-child(5)  { width:4px; height:4px; background:#ffd700; left:90%; top:30%; animation-delay:1.5s; }
.sparkles span:nth-child(6)  { width:6px; height:6px; background:#60a5fa; left:25%; top:75%; animation-delay:2.5s; }
.sparkles span:nth-child(7)  { width:5px; height:5px; background:#ffd700; left:50%; top:20%; animation-delay:3s; }
.sparkles span:nth-child(8)  { width:4px; height:4px; background:#a5f3fc; left:60%; top:80%; animation-delay:0.8s; }
.sparkles span:nth-child(9)  { width:7px; height:7px; background:#fbbf24; left:35%; top:50%; animation-delay:3.5s; }
.sparkles span:nth-child(10) { width:4px; height:4px; background:#60a5fa; left:45%; top:90%; animation-delay:1.2s; }
.sparkles span:nth-child(11) { width:5px; height:5px; background:#ffd700; left:92%; top:70%; animation-delay:4s; }
.sparkles span:nth-child(12) { width:6px; height:6px; background:#60a5fa; left:3%; top:65%; animation-delay:2.2s; }
.sparkles span:nth-child(13) { width:4px; height:4px; background:#ffd700; left:55%; top:5%; animation-delay:1.8s; }
.sparkles span:nth-child(14) { width:7px; height:7px; background:#a5f3fc; left:78%; top:42%; animation-delay:0.3s; }
.sparkles span:nth-child(15) { width:5px; height:5px; background:#fbbf24; left:20%; top:95%; animation-delay:4.5s; }
.sparkles span:nth-child(16) { width:4px; height:4px; background:#60a5fa; left:67%; top:22%; animation-delay:2.8s; }
.sparkles span:nth-child(17) { width:6px; height:6px; background:#ffd700; left:40%; top:62%; animation-delay:3.2s; }
.sparkles span:nth-child(18) { width:5px; height:5px; background:#a5f3fc; left:10%; top:85%; animation-delay:1.6s; }
.sparkles span:nth-child(19) { width:4px; height:4px; background:#fbbf24; left:85%; top:85%; animation-delay:5s; }
.sparkles span:nth-child(20) { width:7px; height:7px; background:#ffd700; left:30%; top:30%; animation-delay:0.7s; }
.sparkles span:nth-child(21) { width:5px; height:5px; background:#60a5fa; left:12%; top:55%; animation-delay:3.8s; }
.sparkles span:nth-child(22) { width:6px; height:6px; background:#ffd700; left:65%; top:15%; animation-delay:1.3s; }
.sparkles span:nth-child(23) { width:4px; height:4px; background:#a5f3fc; left:75%; top:70%; animation-delay:4.2s; }
.sparkles span:nth-child(24) { width:5px; height:5px; background:#fbbf24; left:42%; top:35%; animation-delay:0.9s; }
.sparkles span:nth-child(25) { width:7px; height:7px; background:#60a5fa; left:88%; top:50%; animation-delay:2.1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.4) translateY(0); }
    50% { opacity: 0.9; transform: scale(1.2) translateY(-16px); }
}

/* ── STICKY NAVBAR ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(180, 210, 255, 0.4);
    transition: all 0.35s ease;
    padding: 0 20px;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(30, 80, 180, 0.12);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a3a6e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo-star { color: #ffd700; font-size: 1.3rem; }
.logo-amp { color: #ffd700; font-weight: 700; }
.nav-logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    text-decoration: none;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: #1a3a6e;
    background: rgba(59, 130, 246, 0.08);
}
.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(59, 130, 246, 0.12));
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1a3a6e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ── PAGE WRAPPER ──────────────────────────────────── */
.page-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 80px auto 36px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    border: 1.5px solid rgba(180, 210, 255, 0.5);
    box-shadow:
        0 24px 80px rgba(30, 80, 180, 0.12),
        0 4px 24px rgba(255, 215, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    padding: 0;
    overflow: hidden;
}

/* ── HERO SECTION ──────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 56px 40px;
    gap: 30px;
    background: 
        linear-gradient(135deg, rgba(200, 220, 255, 0.4) 0%, rgba(255, 253, 230, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(180, 210, 255, 0.3);
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}
.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent);
    top: -80px;
    left: -60px;
    animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    bottom: -60px;
    right: -40px;
    animation: orbFloat 8s ease-in-out infinite 4s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; min-width: 0; }

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fffbe6, #fff3cc);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 18px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #0d2557 0%, #1a4a8e 40%, #b8860b 70%, #e8b500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 14px;
}
.hero-desc strong { color: #1a3a6e; font-weight: 700; }

.hero-sub {
    font-size: 1.02rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    color: #475569;
    margin-bottom: 22px;
}
.hero-sub strong { color: #b8860b; }

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-gold {
    background: linear-gradient(135deg, #e8a900, #ffd700, #f59e0b);
    color: #1a0a00;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(0,0,0,0.08);
}
.btn-gold:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 36px rgba(255, 215, 0, 0.5), 0 4px 14px rgba(0,0,0,0.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #1a3a6e;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}
.btn-outline:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ── HERO STATS ────────────────────────────────────── */
.hero-stats {
    display: flex;
    gap: 28px;
}
.stat-item {
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a3a6e;
    line-height: 1.1;
}
.stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-illustration {
    flex: 0 0 360px;
    max-width: 360px;
}
.laptop-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(30, 80, 180, 0.2));
}

/* ── SECTION COMMONS ───────────────────────────────── */
.section {
    padding: 44px 56px;
    position: relative;
}

.sec-hdr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}
.sec-hdr .fa-code,
.sec-hdr .fa-laptop-code,
.sec-hdr .fa-bullhorn,
.sec-hdr .fa-mobile-alt,
.sec-hdr .fa-paper-plane {
    margin-right: 6px;
    opacity: 0.85;
}

.divline {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    border-radius: 2px;
}
.gold-line { background: linear-gradient(90deg, transparent, #ffd700, transparent); }
.short-line { max-width: 60px; }

.sec-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.65rem;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.plans-col   { color: #1a3a6e; }
.sw-col      { color: #1a3a6e; }
.dm-col      { color: #1a3a6e; }
.mob-col     { color: #1a3a6e; font-size: 1.4rem; }
.contact-col { color: #1a3a6e; }

.sec-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ── PLAN CARDS ────────────────────────────────────── */
.plan-cards {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}
.plan-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(30, 80, 180, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    width: 290px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(180, 210, 255, 0.45);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 50px rgba(30, 80, 180, 0.18),
        0 6px 18px rgba(255, 215, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Featured plan glow */
.featured-plan {
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow:
        0 8px 32px rgba(30, 80, 180, 0.15),
        0 0 0 4px rgba(59, 130, 246, 0.08);
    transform: scale(1.03);
}
.featured-plan:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Plan Ribbon */
.plan-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}
.best-value {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.premium-ribbon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Plan header strip */
.plan-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-weight: 700;
}
.s-top { background: linear-gradient(135deg, #ffe566, #ffd700, #e8b500); color: #1a1a00; }
.a-top { background: linear-gradient(135deg, #93c5fd, #60a5fa, #3b82f6); color: #0d2057; }
.p-top { background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706); color: #1a0a00; }

.picon { font-size: 1.5rem; line-height: 1; }
.pname { font-size: 1.06rem; font-weight: 700; letter-spacing: 0.02em; }

.pprice {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    padding: 14px 18px 8px;
    border-bottom: 1.5px solid rgba(180, 210, 255, 0.3);
}
.price-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: #1a3a6e;
    letter-spacing: -0.01em;
}

.pfeatures {
    list-style: none;
    padding: 12px 18px;
    flex: 1;
}
.pfeatures li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 8px;
    color: #334155;
}
.ck {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.pbf {
    padding: 10px 18px 14px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    border-top: 1px solid rgba(180, 210, 255, 0.25);
}
.pbf span { font-weight: 700; color: #1a3a6e; }

.plan-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 18px 18px;
    padding: 11px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    color: #1a3a6e;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    transition: all 0.3s ease;
}
.plan-cta-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}
.btn-featured {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}
.btn-featured:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

/* ── SOFTWARE SOLUTIONS ────────────────────────────── */
.software-section {
    background: linear-gradient(135deg, rgba(255, 253, 230, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.sw-wrap {
    display: flex;
    align-items: center;
    gap: 36px;
    justify-content: center;
}

.sw-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    flex: 1;
}

.sw-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border: 1.5px solid rgba(180, 210, 255, 0.35);
    box-shadow: 0 4px 16px rgba(30, 80, 180, 0.06);
    transition: all 0.35s ease;
    cursor: default;
}
.sw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 80, 180, 0.14), 0 0 0 2px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.sw-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
}

.sw-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

.phone-right, .phone-right2 {
    flex-shrink: 0;
    filter: drop-shadow(0 10px 28px rgba(30, 80, 180, 0.22));
}

/* ── DIGITAL MARKETING SECTION ─────────────────────── */
.services-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(219, 234, 254, 0.2) 100%);
    border-top: 1px solid rgba(180, 210, 255, 0.25);
}

.dm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.dm-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    border: 1.5px solid rgba(180, 210, 255, 0.35);
    box-shadow: 0 6px 22px rgba(30, 80, 180, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.dm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #3b82f6, #ffd700);
    opacity: 0;
    transition: opacity 0.35s;
}
.dm-card:hover::before { opacity: 1; }
.dm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(30, 80, 180, 0.14), 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.dm-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #e8f0fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: #2563eb;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    transition: all 0.35s;
}
.dm-card:hover .dm-card-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(59, 130, 246, 0.3);
}

.dm-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1a3a6e;
    margin-bottom: 8px;
}

.dm-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.dm-pricing-note {
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 253, 230, 0.6), rgba(219, 234, 254, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.25);
}
.dm-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #1a0a00;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}
.dm-pricing-note p {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 500;
}

/* ── MOBILE APP SECTION ────────────────────────────── */
.mobile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(200, 220, 255, 0.15) 0%, rgba(255, 253, 230, 0.2) 100%);
    border-top: 1px solid rgba(180, 210, 255, 0.25);
    padding-top: 40px !important;
    position: relative;
}

.phone-left {
    flex-shrink: 0;
    filter: drop-shadow(0 10px 28px rgba(255, 215, 0, 0.22));
    animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mobile-content { flex: 1; min-width: 220px; max-width: 350px; }
.inline-hdr { margin-bottom: 16px; }

.app-list {
    list-style: none;
    margin-bottom: 10px;
}
.app-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 9px;
}
.gold-ck {
    background: linear-gradient(135deg, #ffd700, #f59e0b) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35) !important;
}
.app-note {
    font-size: 0.92rem;
    color: #b8860b;
    font-style: italic;
    font-weight: 500;
    margin: 8px 0 14px;
}

/* ── CONTACT SECTION ───────────────────────────────── */
.contact-section {
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.15) 0%, rgba(255, 253, 230, 0.15) 100%);
    border-top: 1px solid rgba(180, 210, 255, 0.25);
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Info sidebar */
.contact-info {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(180, 210, 255, 0.35);
    box-shadow: 0 4px 14px rgba(30, 80, 180, 0.06);
    transition: all 0.3s;
}
.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 22px rgba(30, 80, 180, 0.12);
    border-color: rgba(59, 130, 246, 0.35);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #e8f0fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #2563eb;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a3a6e;
    margin-bottom: 2px;
}
.info-card p {
    font-size: 0.85rem;
    color: #64748b;
}
.info-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.info-card a:hover { color: #1d4ed8; }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    justify-content: center;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
}

/* Contact Form */
.contact-form-wrap {
    flex: 1;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 500;
    animation: slideDown 0.4s ease;
}
.form-alert.success {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #166534;
}
.form-alert.error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label i { color: #3b82f6; font-size: 0.78rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid rgba(180, 210, 255, 0.45);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 14px rgba(59, 130, 246, 0.08);
}
.form-group input.error-field,
.form-group textarea.error-field {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.field-error {
    font-size: 0.76rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
    font-weight: 500;
}

.submit-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #e8a900, #ffd700, #f59e0b);
    color: #1a0a00;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.submit-btn:hover::before { transform: translateX(100%); }
.submit-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 36px rgba(255, 215, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.1);
}
.submit-btn:active {
    transform: translateY(0) scale(0.98);
}
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #0d2557, #1a3a6e);
    padding: 36px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.footer-content { position: relative; z-index: 1; }

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.footer-brand .brand-star { color: #ffd700; }
.footer-brand .logo-amp { color: #ffd700; }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 12px;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-phone a {
    color: #ffd700;
    text-decoration: none;
}
.footer-phone a:hover { color: #ffe566; }
.footer-phone i { margin-right: 6px; }

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── ANIMATION CLASSES ─────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fadeInLeft"] {
    transform: translateX(-30px);
}
[data-animate="fadeInRight"] {
    transform: translateX(30px);
}
[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1080px) {
    .sw-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .dm-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .page-wrapper {
        margin: 70px 12px 24px;
        border-radius: 22px;
    }
    .hero {
        flex-direction: column;
        padding: 36px 28px 28px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-illustration {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
    .hero-title { font-size: 2.1rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .section { padding: 30px 24px; }

    .plan-cards { flex-direction: column; align-items: center; }
    .plan-card { width: 100%; max-width: 360px; }
    .featured-plan { transform: none; }
    .featured-plan:hover { transform: translateY(-8px); }

    .sw-wrap { flex-direction: column; }
    .sw-cards-grid { grid-template-columns: repeat(2, 1fr); }

    .dm-cards { grid-template-columns: 1fr; }

    .mobile-section { flex-direction: column; padding: 28px 24px !important; }
    .sec-title { font-size: 1.25rem; white-space: normal; text-align: center; }
    .phone-left, .phone-right2, .phone-right { display: none; }

    .contact-wrapper { flex-direction: column; }
    .contact-info { flex: 1; }
    .form-row { flex-direction: column; }

    .footer { padding: 28px 24px; }

    /* Mobile nav */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
        border-bottom: 1px solid rgba(180, 210, 255, 0.4);
        box-shadow: 0 10px 30px rgba(30, 80, 180, 0.1);
    }
    .nav-links.open { display: flex; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 1.7rem; }
    .hero-badge { font-size: 0.75rem; padding: 5px 14px; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.3rem; }
    .sw-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .plan-card { min-width: 0; }
    .sec-title { font-size: 1.15rem; }
    .contact-form-wrap { padding: 0; }
    .submit-btn { width: 100%; justify-content: center; }
}

/* ═══════════════ POPULAR READYMADE SOFTWARE SECTION ═══════════════ */
.popular-software-section {
    background: linear-gradient(135deg, #0a1628 0%, #122244 50%, #0d1b3a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 5% 60px;
}
.popular-software-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,215,0,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(96,165,250,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.ps-col { color: #ffd700 !important; }

.ps-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}
.ps-card {
    background: linear-gradient(145deg, rgba(26,58,110,0.7), rgba(13,37,87,0.9));
    border: 1px solid rgba(74,127,212,0.25);
    border-radius: 18px;
    padding: 32px 26px 26px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.ps-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #60a5fa, #ffd700);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ps-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.08);
}
.ps-card:hover::before { opacity: 1; }

.ps-card-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(96,165,250,0.15));
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #ffd700;
    transition: all 0.4s ease;
}
.ps-card:hover .ps-card-icon {
    background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(96,165,250,0.3));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.ps-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ps-card-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.ps-card-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.ps-card-features span {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}
.ps-card-features span i { margin-right: 4px; font-size: 0.7rem; }

.ps-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    background: linear-gradient(135deg, #ffd700, #f0c000);
    color: #0d2557;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ps-demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,215,0,0.35);
}

.ps-cta {
    text-align: center;
    margin-top: 50px;
    padding: 36px 30px;
    background: linear-gradient(135deg, rgba(26,58,110,0.5), rgba(13,37,87,0.7));
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.ps-cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #f0c000);
    color: #0d2557;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.ps-cta-badge i { margin-right: 6px; }
.ps-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}
.ps-cta p strong { color: #ffd700; }

@media (max-width: 768px) {
    .ps-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .popular-software-section { padding: 50px 4% 40px; }
}

/* ═══════════════ FULL WIDTH MAP ═══════════════ */
.map-fullwidth {
    width: 100%;
    padding: 0;
    margin: 0;
}
.map-fullwidth-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #0a1628 0%, #122244 50%, #0d1b3a 100%);
}
.map-fullwidth-header h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    background: rgba(255, 215, 0, 0.06);
}
.map-fullwidth-header h3 i {
    color: #ffd700;
    font-size: 1rem;
}
.map-fullwidth-wrap {
    width: 100%;
    line-height: 0;
}
.map-fullwidth-wrap iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
    filter: grayscale(20%) contrast(1.05);
}
.map-fullwidth-bottom {
    background: linear-gradient(135deg, #0a1628 0%, #122244 50%, #0d1b3a 100%);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.map-fullwidth-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, #60a5fa, #ffd700, transparent);
}
.map-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.map-bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}
.map-bottom-item i {
    font-size: 1.3rem;
    color: #ffd700;
    animation: mapIconPulse 2s ease-in-out infinite;
}
.map-bottom-item:nth-child(2) i { color: #60a5fa; animation-delay: 0.3s; }
.map-bottom-item:nth-child(3) i { color: #22c55e; animation-delay: 0.6s; }
.map-bottom-item:nth-child(4) i { color: #f472b6; animation-delay: 0.9s; }
.map-bottom-item span { color: #fff; font-weight: 600; }
.map-bottom-cta {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
.map-bottom-cta a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.map-bottom-cta a:hover { color: #60a5fa; }
@keyframes mapIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}
@media (max-width: 768px) {
    .map-fullwidth-wrap iframe {
        height: 280px;
    }
    .map-bottom-content {
        gap: 16px;
    }
    .map-bottom-item {
        font-size: 0.8rem;
    }
}
