/* ===================================================
   Creative Vision IT - WordPress Website Price Pakistan
   Custom Stylesheet
=================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --text: #374151;
    --text-muted: #6b7280;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --whatsapp: #25d366;
    --transition: all 0.3s ease;
    --shadow: 0 4px 24px rgba(37,99,235,0.10);
    --shadow-lg: 0 8px 40px rgba(37,99,235,0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

/* =========== BASE =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }

/* =========== BOOTSTRAP-LITE UTILITIES =========== */
.container {
    width: min(100% - 2rem, 1140px);
    margin-inline: auto;
    padding-inline: 0.75rem;
}
.row {
    --gutter-x: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--gutter-x) / -2);
    margin-right: calc(var(--gutter-x) / -2);
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-left: calc(var(--gutter-x) / 2);
    padding-right: calc(var(--gutter-x) / 2);
}
.g-2 { --gutter-x: 0.75rem; }
.g-3 { --gutter-x: 1rem; }
.g-4 { --gutter-x: 1.5rem; }
.g-5 { --gutter-x: 3rem; }
.col-4 { width: 33.333333%; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.border-0 { border: 0 !important; }
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.small { font-size: 0.875em; }
.text-white { color: #fff !important; }
.text-primary { color: var(--primary) !important; }
.text-warning { color: var(--accent) !important; }
.text-success { color: var(--success) !important; }
.text-info { color: #0ea5e9 !important; }
.text-danger { color: #ef4444 !important; }
.text-secondary { color: var(--text-muted) !important; }
.text-dark { color: var(--dark) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-light { background: var(--light-bg) !important; }
.bg-white { background: var(--white) !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-stretch { align-items: stretch !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.ps-0 { padding-left: 0 !important; }
.pe-0 { padding-right: 0 !important; }
.overflow-hidden { overflow: hidden !important; }
.rounded { border-radius: 0.375rem !important; }
.shadow { box-shadow: var(--shadow) !important; }
.fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-warning { background: var(--accent); color: #111; border-color: var(--accent); }
.btn-warning:hover { background: #d97706; color: #111; }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-outline-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline-secondary:hover { background: var(--light-bg); color: var(--dark); }
.btn-outline-success { background: transparent; color: var(--success); border-color: var(--success); }
.btn-outline-success:hover { background: var(--success); color: #fff; }
.btn-outline-danger { background: transparent; color: #ef4444; border-color: #ef4444; }
.btn-outline-danger:hover { background: #ef4444; color: #fff; }
.btn-outline-info { background: transparent; color: #0ea5e9; border-color: #0ea5e9; }
.btn-outline-info:hover { background: #0ea5e9; color: #fff; }
.btn-close {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
}
.btn-close::before {
    content: '×';
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}
.btn-close:hover { opacity: 1; }

.alert {
    position: relative;
    padding: 1rem 2.5rem 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 14px;
}
.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}
.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
.alert-dismissible { padding-right: 3rem; }
.fade { transition: opacity 0.15s linear; }
.fade:not(.show) { opacity: 0; }

.collapse { display: none; }
.collapse.show { display: block; }

.form-control, .form-select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-floating { position: relative; }
.form-floating > .form-control,
.form-floating > .form-select {
    height: 58px;
    padding: 1.5rem 1rem 0.75rem;
}
.form-floating > textarea.form-control {
    min-height: 150px;
    padding-top: 1.75rem;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
    color: var(--text-muted);
    transform-origin: 0 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-select::placeholder { color: transparent; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:valid ~ label,
.form-floating > textarea.form-control:focus ~ label,
.form-floating > textarea.form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-0.5rem) scale(0.85);
    opacity: 0.9;
}
.invalid-feedback {
    display: none;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: #dc3545;
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback,
.was-validated textarea.form-control:invalid ~ .invalid-feedback {
    display: block;
}

section[id] { scroll-margin-top: 96px; }
section:not(#home), .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* =========== UTILITY =========== */
.section-padding { padding: 90px 0; }
.text-purple { color: #7c3aed !important; }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =========== BUTTONS =========== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,99,235,0.35);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.45);
    color: #fff !important;
}
.btn-whatsapp {
    background: var(--whatsapp) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* =========== NAVBAR =========== */
#mainNav {
    background: transparent;
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1000;
}
#mainNav.scrolled {
    background: var(--dark) !important;
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.navbar { width: 100%; }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.nav-item { list-style: none; }
.navbar-collapse { width: 100%; }
.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
}
.navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.navbar-brand { font-size: 1.3rem; font-weight: 800; color: #fff !important; }
.brand-text { font-weight: 800; }
.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--accent) !important; background: rgba(255,255,255,0.08); }

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler { display: none; }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        width: auto;
        flex-basis: auto;
        padding-top: 0;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
        padding-top: 0;
        gap: 0.25rem;
    }
    .align-items-lg-center { align-items: center !important; }
    .text-lg-end { text-align: right !important; }
    .ms-lg-3 { margin-left: 1rem !important; }
    .d-lg-flex { display: flex !important; }
    .d-lg-none { display: none !important; }
}

@media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-12 { width: 100%; }
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .d-md-flex { display: flex !important; }
    .d-md-none { display: none !important; }
}

@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
    .col-sm-12 { width: 100%; }
    .d-sm-flex { display: flex !important; }
    .d-sm-none { display: none !important; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-5 { width: 41.666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333333%; }
    .col-lg-8 { width: 66.666667%; }
    .col-lg-12 { width: 100%; }
}

@media (max-width: 991.98px) {
    .navbar-collapse { display: none; padding-top: 0.75rem; }
    .navbar-collapse.show { display: block; }
}

/* =========== HERO =========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e1b4b 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: 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");
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.stat-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}
.stat-box p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin: 4px 0 0;
}
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; }

/* Browser Mockup */
.hero-mockup { position: relative; }
.browser-mockup {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
    width: 360px;
    max-width: 100%;
}
.browser-bar {
    background: #f0f0f0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.browser-url {
    background: #fff;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.72rem;
    color: #666;
    margin-left: 8px;
    flex: 1;
}
.browser-content { padding: 14px; }
.mockup-header { height: 40px; background: linear-gradient(135deg, #2563eb, #7c3aed); border-radius: 8px; margin-bottom: 10px; }
.mockup-nav { margin-bottom: 14px; }
.mockup-nav-item { height: 8px; background: #e2e8f0; border-radius: 4px; flex: 1; }
.mockup-nav-item.active { background: #2563eb; }
.mockup-hero { background: #f8fafc; border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.mockup-title { height: 14px; background: #1e293b; border-radius: 4px; width: 70%; margin-bottom: 8px; }
.mockup-subtitle { height: 8px; background: #94a3b8; border-radius: 4px; width: 90%; margin-bottom: 14px; }
.mockup-btn { height: 24px; background: #2563eb; border-radius: 20px; width: 40%; }
.mockup-cards { padding-bottom: 8px; }
.mockup-card { height: 70px; background: #f1f5f9; border-radius: 8px; flex: 1; }
.mockup-card.featured { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}
.badge-1 { top: 30px; right: -20px; animation-delay: 0s; }
.badge-2 { top: 50%; right: -35px; animation-delay: 1s; }
.badge-3 { bottom: 40px; right: -10px; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =========== TRUST BAR =========== */
.trust-item { padding: 8px; }
.trust-item p { color: var(--text); }

/* =========== SERVICES =========== */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: linear-gradient(145deg, #1e3a8a, #1e1b4b);
    color: #fff;
    border: none;
}
.service-card.featured h4, .service-card.featured p { color: rgba(255,255,255,0.9); }
.featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.bg-primary-light { background: #dbeafe; }
.bg-warning-light { background: #fef3c7; }
.bg-success-light { background: #d1fae5; }
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-features { list-style: none; padding: 0; margin: 12px 0 0; font-size: 0.88rem; color: var(--text-muted); }
.service-card.featured .service-features { color: rgba(255,255,255,0.75); }
.service-features li { padding: 3px 0; }

/* =========== ABOUT =========== */
.about-image-wrap { position: relative; }
.about-main-box {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid var(--border);
}
.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.about-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
}
.about-icon-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-icon-item span { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.about-floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}
.about-floating-card div { display: flex; flex-direction: column; }
.about-floating-card strong { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1; }
.about-floating-card span { font-size: 0.72rem; color: var(--text-muted); }
.card-1 { bottom: -20px; left: -20px; animation-delay: 0.5s; }
.card-2 { top: -20px; right: -20px; animation-delay: 1.5s; }
.about-content p { font-size: 0.95rem; color: var(--text); }
.about-feature {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    padding: 6px 0;
    opacity: 1;
    transform: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.about-feature:hover { transform: translateX(4px); }

/* =========== PRICING =========== */
.pricing-section { background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%); }
.pricing-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    opacity: 1;
    transform: none;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(245,158,11,0.25);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.pricing-header {
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    color: #fff;
    padding: 40px 28px 28px;
    text-align: center;
}
.pricing-card.featured .pricing-header { padding-top: 50px; }
.pricing-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    border: 2px solid rgba(255,255,255,0.25);
}
.pricing-icon.ecom { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.4); }
.plan-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.plan-tagline { font-size: 0.82rem; opacity: 0.75; margin-bottom: 16px; }
.plan-price { margin: 12px 0 4px; }
.plan-price .currency { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: 10px; display: inline-block; opacity: 0.85; }
.plan-price .amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-note { font-size: 0.78rem; opacity: 0.6; margin: 0; }
.pricing-body { padding: 24px 28px; flex: 1; }
.features-list { list-style: none; padding: 0; margin: 0; }
.features-list li {
    padding: 7px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}
.features-list li:last-child { border: none; }
.features-list .included { color: var(--text); }
.features-list .excluded { color: #cbd5e1; }
.features-list .included i { color: var(--success); }
.features-list .excluded i { color: #ef4444; font-size: 0.75rem; }
.pricing-footer { padding: 20px 28px 28px; }

/* =========== WHY US =========== */
.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    opacity: 1;
    transform: none;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.why-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.why-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* =========== CTA SECTION =========== */
.cta-section { padding: 0 0 80px; }
.cta-inner {
    background: linear-gradient(135deg, #1e3a8a, #1e1b4b);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(30,58,138,0.4);
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.cta-subtitle { font-size: 1rem; opacity: 0.85; }

/* =========== CONTACT =========== */
.contact-info-card {
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    color: #fff;
    border-radius: var(--radius);
    padding: 36px 30px;
    height: 100%;
}
.contact-info-card h4 { color: #fff; font-weight: 700; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border: none; }
.contact-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-item div { display: flex; flex-direction: column; }
.contact-info-item strong { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item a, .contact-info-item span { font-size: 0.95rem; color: #fff; font-weight: 500; }
.contact-info-item a:hover { color: var(--accent); }
.social-links-contact { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); color: #fff; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.tiktok { background: #010101; }
.social-btn.linkedin { background: #0a66c2; }
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.contact-form-card h4 { font-weight: 700; color: var(--dark); }
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* =========== FOOTER =========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 50px; }
.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-logo i { color: #60a5fa; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-contact-mini a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); border-color: var(--primary); }
.footer-heading { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-packages { display: flex; flex-direction: column; gap: 14px; }
.footer-package-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.footer-package-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); }
.fp-icon { font-size: 1.4rem; flex-shrink: 0; }
.footer-package-item div { flex: 1; }
.footer-package-item strong { display: block; font-size: 0.85rem; color: #fff; }
.footer-package-item span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.fp-btn {
    background: var(--primary);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.fp-btn:hover { background: var(--primary-dark); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* =========== WHATSAPP FLOAT =========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 58px; height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: var(--transition);
    overflow: visible;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(37,211,102,0.35);
    border-radius: 50%;
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulse-wa {
    0% { transform: scale(0.85); opacity: 0.75; }
    70% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* =========== BACK TO TOP =========== */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =========== RESPONSIVE =========== */
@media (max-width: 991.98px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .section-padding { padding: 60px 0; }
    .cta-inner { padding: 40px 28px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .card-1, .card-2 { display: none; }
    .badge-2 { right: -15px; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.6rem; }
    .hero-stats .col-4 { flex: 0 0 33.33%; }
    .stat-box h3 { font-size: 1.4rem; }
    .browser-mockup { width: 100%; }
    .about-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .about-icon-item { padding: 14px 6px; }
    .cta-inner { padding: 32px 20px; }
    .contact-form-card { padding: 24px 20px; }
    .footer-top { padding: 50px 0 30px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
    .back-to-top { bottom: 84px; right: 20px; }
}
@media (max-width: 575.98px) {
    .hero-btns .btn { display: block; width: 100%; text-align: center; }
    .hero-btns .btn:first-child { margin-right: 0 !important; margin-bottom: 12px; }
    .hero-stats .col-4 { padding: 0 4px; }
    .stat-box { padding: 10px 6px; }
    .pricing-card.featured { transform: none; }
    .footer-package-item { flex-wrap: wrap; }
}
