/* =========================================================
   T-M NETWORK — PREMIUM PROFESSIONAL DARK THEME
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

/* ─── Design Tokens ───────────────────────────────────── */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --purple: #8b5cf6;
    --green: #10b981;

    /* alias used in older markup */
    --primary-tmpro: #0ea5e9;
    --primary-blue: #0ea5e9;
    --primary-blue-dark: #2563eb;

    --bg-base: #131139;
    --bg-dark: #0f0d2b;
    --bg-card: #1c1a4e;
    --bg-card-hover: #25235d;
    --bg-elevated: #2d2b70;

    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);
    --border-focus: rgba(14, 165, 233, 0.5);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: rgba(255, 255, 255, 0.4);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.5);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.theme--dark {
    font-family: 'Inter', system-ui, sans-serif !important;
    background-color: var(--bg-base) !important;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff;
    letter-spacing: -0.02em;
}

a {
    transition: var(--transition);
}

/* ─── Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 99px;
}

/* ─── Selection ───────────────────────────────────────── */
::selection {
    background: rgba(14, 165, 233, 0.3);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.header-zal-pro {
    background: rgba(7, 13, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    padding: 14px 0;
}

.header-zal-pro.scrolled {
    padding: 10px 0;
    background: rgba(7, 13, 26, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Logo */
.navbar-brand {
    gap: 10px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
    transition: var(--transition);
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

/* Nav links */
.header-zal-pro .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 12.5px !important;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.header-zal-pro .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 99px;
    transition: width 0.3s ease;
}

.header-zal-pro .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.header-zal-pro .nav-link:hover::after,
.header-zal-pro .nav-link.active::after {
    width: 60%;
}

.header-zal-pro .nav-link.active {
    color: var(--primary) !important;
    background: rgba(14, 165, 233, 0.08);
}

/* CTA buttons in nav */
.btn-orange {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: #fff !important;
    border: none !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 12.5px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
    filter: brightness(1.1);
}

/* WhatsApp button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Toggler */
.navbar-toggler {
    border: 1px solid var(--border) !important;
    padding: 6px 10px;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-tmpro-unique {
    background: var(--bg-base) !important;
    /* Indigo Blue */
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

@keyframes driftA {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-30px, 30px) scale(1.05);
    }
}

@keyframes driftB {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(20px, -25px) scale(1.08);
    }
}

.hero-tmpro-unique .container {
    position: relative;
    z-index: 2;
}

/* Badge */
.badge-tmpro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

/* Hero title */
.hero-title-unique {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #94c8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    text-align: left !important;
}

/* Hero subtitle */
.hero-subtitle-unique {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    line-height: 1.7;
    text-align: left !important;
    margin-left: 0 !important;
}

/* Hero trust indicators */
.hero-trust-indicators {
    border-color: var(--border) !important;
}

.trust-item {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2px;
}

/* Hero CTA buttons */
.hero-actions .btn-info {
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35) !important;
    transition: var(--transition);
}

.hero-actions .btn-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.5) !important;
    filter: brightness(1.05);
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* Hero illustration enhancements */
.hero-illustration-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Updated hero image with edge fading for seamless integration */
.hero-img-pro {
    width: 100%;
    max-width: 620px;
    height: auto;
    /* Soften the edges to hide any background mismatch */
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    filter: drop-shadow(0 20px 50px rgba(14, 165, 233, 0.25));
    animation: floatPro 6s ease-in-out infinite;
    z-index: 2;
    transition: var(--transition);
}

.hero-img-pro:hover {
    filter: drop-shadow(0 30px 60px rgba(14, 165, 233, 0.4));
    transform: scale(1.02);
}

.hero-glow-back {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes floatPro {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ═══════════════════════════════════════════════════════
   SECTION SPACING & SHARED
═══════════════════════════════════════════════════════ */
section {
    position: relative;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    padding: 5px 14px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 99px;
}

/* Divider line between sections */
.screenshots-section,
.modules-section,
#testimonials,
.contact-section {
    border-top: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════ */
.features-section {
    padding: 110px 0;
    background: #0a0f1c !important;
    /* Distinct background for contrast */
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

/* Feature grid */
.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .premium-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .premium-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature card */
.feature-premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-premium-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), var(--shadow-glow);
}

.feature-premium-card:hover::before {
    opacity: 1;
}

/* Icon pod */
.premium-icon-pod {
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature-premium-card:hover .premium-icon-pod {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.premium-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.premium-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.premium-sub-list {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.premium-sub-list li {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-sub-list i {
    color: var(--green);
    font-size: 13px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.statistic-section {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.statistic-block {
    border-right: 1px solid var(--border);
    padding: 28px 20px;
}

.statistic-block:last-child {
    border-right: none;
}

.statistic-number {
    font-size: clamp(36px, 4vw, 52px) !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   SCREENSHOTS
═══════════════════════════════════════════════════════ */
.screenshots-section {
    padding: 100px 0;
    background: var(--bg-base);
}

.screenshot-card {
    background: transparent;
    perspective: 1200px;
}

.screenshot-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-img-wrapper {
    transform: rotateX(3deg) scale(1.02);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(14, 165, 233, 0.15);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 26px;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   HIGH-FIDELITY DASHBOARD MOCKUP
   ═══════════════════════════════════════════════════════ */
.dashboard-mockup-frame {
    width: 100%;
    max-width: 1100px;
    height: 650px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 8px solid #1e293b;
}

.mock-sidebar {
    width: 80px;
    background: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-logo-area {
    margin-bottom: 40px;
}

.mock-logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.mock-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mock-nav-item {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.mock-nav-item.active {
    color: #0ea5e9;
}

.mock-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #f1f5f9;
}

.mock-topbar {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.mock-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.mock-user-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mock-time {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.mock-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.mock-avatar {
    width: 32px;
    height: 32px;
    background: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}

.mock-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 20px;
}

.mock-stat-tile {
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 85px;
}

.mock-stat-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 5px;
}

.mock-stat-value {
    font-size: 24px;
    font-weight: 800;
}

.mock-tile-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    opacity: 0.2;
}

/* Tile Colors - Matching Dashboard */
.bg-purple {
    background: #8b5cf6;
}

.bg-teal {
    background: #14b8a6;
}

.bg-green {
    background: #22c55e;
}

.bg-orange {
    background: #f97316;
}

.bg-slate {
    background: #475569;
}

.bg-blue {
    background: #3b82f6;
}

.bg-deep-orange {
    background: #f43f5e;
}

.bg-red {
    background: #ef4444;
}

.bg-dark-blue {
    background: #1e3a8a;
}

.bg-cyan {
    background: #06b6d4;
}

.mock-table-area {
    margin: 0 20px 20px;
    background: #fff;
    border-radius: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.mock-table-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-table-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.mock-table-filters {
    display: flex;
    gap: 8px;
}

.mock-pill {
    padding: 4px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.mock-pill.active {
    background: #1e293b;
    color: #fff;
}

.mock-table-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-table-row.empty {
    font-size: 13px;
    color: #94a3b8;
}

/* Mockup Responsiveness */
@media (max-width: 991px) {
    .dashboard-mockup-frame {
        height: auto;
        min-height: 500px;
    }

    .mock-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mock-sidebar {
        width: 60px;
    }
}

@media (max-width: 767px) {
    .mock-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-sidebar {
        display: none;
    }

    .mock-breadcrumb {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   MODULES
═══════════════════════════════════════════════════════ */
.modules-section {
    padding: 100px 0;
    background: var(--bg-base) !important;
    /* Indigo Blue */
}

.module-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border) !important;
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 40px 28px !important;
    transition: var(--transition);
    text-align: center;
}

.module-card:hover {
    background: rgba(14, 165, 233, 0.05) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.module-icon {
    width: 68px;
    height: 68px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--primary);
    font-size: 26px;
    transition: var(--transition);
}

.module-card:hover .module-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
    transform: scale(1.08);
}

.module-icon i {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.module-card:hover .module-icon i {
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
#testimonials {
    background: var(--bg-base) !important;
    /* Indigo Blue */
    padding: 110px 0;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px !important;
    border-radius: 5px !important;
    transition: width 0.3s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(14, 165, 233, 0.15) !important;
    padding: 28px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    user-select: none;
    height: 100%;
    max-width: 400px;
    /* Force it to stay in a box shape */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-size: 14px;
    /* Slightly smaller for density */
    line-height: 1.6;
}

.swiper-slide {
    padding-bottom: 50px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.25) !important;
    background: rgba(14, 165, 233, 0.04) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.client-avatar {
    border: 2px solid rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section {
    padding: 100px 0;
    background: var(--bg-base) !important;
    /* Indigo Blue */
}

.contact-wrapper {
    background: rgba(17, 24, 39, 0.7) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-xl) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.info-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

/* Form */
.form-floating>.form-control,
.form-floating>.form-select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition);
}

.form-floating>.form-control:focus {
    background: rgba(14, 165, 233, 0.05) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12) !important;
    color: #fff !important;
}

.form-floating>label {
    color: var(--text-muted);
}

.form-floating>.form-control::placeholder {
    color: transparent;
}

/* ─── Submit Button ─────────────────────────────────── */
.btn-tmpro-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-tmpro-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(14, 165, 233, 0.45) !important;
    filter: brightness(1.08);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer#footer-3 {
    background: #060b16 !important;
    border-top: 1px solid var(--border) !important;
    position: relative;
    overflow: hidden;
}

footer#footer-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ═══════════════════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════════════════ */

/* Background gradients */
.bg-blue-grad {
    background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
}

.bg-green-grad {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.bg-purple-grad {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
}

/* Outline button */
.btn-outline-tmpro {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    transition: var(--transition);
}

.btn-outline-tmpro:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.pulse,
.animate-pulse {
    animation: pulse-soft 2.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hero-tmpro-unique {
        padding-top: 130px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-title-unique,
    .hero-subtitle-unique {
        text-align: center !important;
    }

    .hero-subtitle-unique {
        margin: 0 auto 24px;
    }

    .hero-trust-indicators {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .statistic-block {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .statistic-block:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .py-100 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .features-section {
        padding: 70px 0;
    }

    .hero-title-unique {
        letter-spacing: -0.5px;
    }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR SCROLL EFFECT (JS hook)
═══════════════════════════════════════════════════════ */
.header-zal-pro {
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}