/* ===========================
   TapMe Digital - Custom CSS
   =========================== */

/* Root Variables */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --secondary: #00CEC9;
    --accent: #A29BFE;
    --dark: #0F172A;
    --dark-card: #1E293B;
    --dark-border: #334155;
    --text-light: #CBD5E1;
    --text-muted: #94A3B8;
    --white: #ffffff;
    --success: #00B894;
    --warning: #FDCB6E;
    --danger: #E17055;

    --gradient-primary: linear-gradient(135deg, #6C5CE7, #A29BFE);
    --gradient-secondary: linear-gradient(135deg, #00CEC9, #0984E3);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
    --gradient-1: linear-gradient(135deg, #6C5CE7, #A29BFE);
    --gradient-2: linear-gradient(135deg, #00CEC9, #0984E3);
    --gradient-3: linear-gradient(135deg, #E17055, #FDCB6E);
    --gradient-4: linear-gradient(135deg, #00B894, #55EFC4);
    --gradient-5: linear-gradient(135deg, #FD79A8, #E84393);

    --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.15);
    --shadow-md: 0 8px 30px rgba(108, 92, 231, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-custom { color: var(--text-muted) !important; }

/* ===========================
   Navbar
   =========================== */
#mainNav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white) !important;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(108, 92, 231, 0.15);
}

.btn-nav-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-nav-login:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-nav-signup {
    background: var(--gradient-primary);
    border: none;
    color: var(--white) !important;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
}

/* ===========================
   Sections Utility
   =========================== */
.py-6 { padding-top: 90px; padding-bottom: 90px; }

.section-header { margin-bottom: 50px; }

.section-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--accent);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
    color: var(--white);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 206, 201, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.4);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-buttons .btn-primary {
    padding: 14px 32px;
    font-size: 0.95rem;
}

.hero-buttons .btn-outline-custom {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark-card);
    border-radius: 40px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotate(3deg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-preview {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.card-avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-avatar i {
    font-size: 2rem;
    color: white;
}

.card-preview h5 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.card-preview .card-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.card-action-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
}

.card-info-rows { width: 100%; margin-top: 16px; }

.card-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: white;
}

.card-info-row i { font-size: 0.85rem; }

.floating-card {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card.card-views {
    bottom: 80px;
    right: -30px;
    animation-delay: 0.5s;
}

.floating-card.card-share {
    top: 100px;
    left: -40px;
    animation-delay: 1s;
}

.floating-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.floating-card .fc-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.2;
}

.floating-card .fc-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===========================
   Themes Section
   =========================== */
.themes-section {
    background: #0a0f1e;
    position: relative;
}

.themes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.5), transparent);
}

.theme-card {
    cursor: pointer;
    transition: var(--transition);
}

.theme-card:hover { transform: translateY(-5px); }

.theme-preview {
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.theme-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.theme-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    position: relative;
    z-index: 1;
}

.theme-icon i { font-size: 1.2rem; color: white; }

.theme-preview-text {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.25);
    padding: 3px 10px;
    border-radius: 20px;
}

.theme-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

/* ===========================
   How It Works Section
   =========================== */
.how-section {
    background: var(--dark);
    position: relative;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(108, 92, 231, 0.15);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.step-card:hover .step-icon i { color: white; }

.step-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
        color: var(--dark-border);
    }
}

/* ===========================
   Features Section
   =========================== */
.features-section {
    background: #0a0f1e;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-icon.purple { background: rgba(108, 92, 231, 0.15); color: var(--primary); }
.feature-icon.teal   { background: rgba(0, 206, 201, 0.15);  color: var(--secondary); }
.feature-icon.orange { background: rgba(225, 112, 85, 0.15); color: var(--danger); }
.feature-icon.green  { background: rgba(0, 184, 148, 0.15);  color: var(--success); }
.feature-icon.pink   { background: rgba(253, 121, 168, 0.15);color: #FD79A8; }

.feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-section { background: var(--dark); }

.pricing-card {
    background: var(--dark-card);
    border: 2px solid rgba(108, 92, 231, 0.5);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-price sup {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 28px 0;
}

.pricing-features { list-style: none; padding: 0; margin: 0; }

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li .check-icon {
    width: 22px;
    height: 22px;
    background: rgba(0, 184, 148, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--success);
}

.pricing-features li .feature-new {
    background: rgba(108, 92, 231, 0.2);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.pricing-cta {
    margin-top: 36px;
}

.pricing-cta .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 12px;
}

.pricing-note {
    text-align: center;
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(0, 206, 201, 0.1) 100%);
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ===========================
   About Page
   =========================== */
.page-hero {
    min-height: 55vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.breadcrumb-nav a { color: var(--accent); }
.breadcrumb-nav span { color: var(--text-muted); }
.breadcrumb-nav strong { color: var(--white); }

.stats-bar {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    margin-top: 6px;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-3px);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--primary);
}

.value-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   Contact Page
   =========================== */
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-text h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.form-group { margin-bottom: 20px; }

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: 10px !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
    font-family: 'Poppins', sans-serif !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15) !important;
    background: rgba(108, 92, 231, 0.05) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
}

textarea.form-control { resize: vertical; min-height: 130px; }

/* ===========================
   Footer
   =========================== */
.footer-section {
    background: #050A14;
    border-top: 1px solid var(--dark-border);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-divider {
    border-color: var(--dark-border);
    margin: 32px 0 24px;
}

.footer-section .navbar-brand { font-size: 1.2rem; }

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===========================
   WhatsApp Float Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   FAQ Accordion
   =========================== */
.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--accent); }
.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.4rem; }
    .hero-visual { margin-top: 50px; }
    .hero-stats { gap: 25px; }
    .floating-card { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    .py-6 { padding-top: 60px; padding-bottom: 60px; }
    .page-hero-title { font-size: 2rem; }
    .pricing-card { padding: 32px 24px; }
    .cta-title { font-size: 1.8rem; }
    .phone-mockup { width: 240px; height: 480px; }
    #mainNav .d-flex { margin-top: 15px; flex-direction: column; }
    #mainNav .d-flex .btn { width: 100%; text-align: center; }
    .navbar-nav { padding: 10px 0; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.8rem; }
    .stats-bar { padding: 24px; }
    .stat-box { padding: 15px 10px; }
}
