/* ==========================================================================
   Make PAN Card India - Style System
   Brand: SUPERTECH ONLINE SOLUTION PVT LTD
   Domain: Makepancardindia.com
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #0052CC;
    --primary-dark: #0747A6;
    --primary-light: #DEEBFF;
    --secondary: #0A2540;
    --accent-green: #10B981;
    --accent-orange: #FF7A00;
    --accent-purple: #7C3AED;
    
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-light: #F8FAFC;
    
    --border-color: #E2E8F0;
    --border-hover: #CBD5E1;
    --border-focus: #3B82F6;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(0, 82, 204, 0.35);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-tag.text-white {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #0052CC 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Announcement Bar */
.top-bar {
    background: var(--secondary);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-info a {
    color: #E2E8F0;
}

.top-info a:hover {
    color: var(--primary-light);
}

.top-info .divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-right-features {
    display: flex;
    gap: 1rem;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Navbar Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.brand-name .highlight {
    color: var(--primary);
}

.sub-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .btn {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--accent-green);
    color: white;
}

.btn-success:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: #F1F5F9;
    border-color: var(--text-secondary);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 82, 204, 0.55);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(0, 82, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0); }
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0 5rem 0;
    background: linear-gradient(180deg, #F0F4FF 0%, var(--bg-main) 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.shape-1 {
    top: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: #60A5FA;
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: #FBBF24;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    border: 1px solid var(--primary-light);
}

.hero-text h1 {
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 580px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--accent-green);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-color);
}

/* PAN Card Mockup Preview */
.hero-card-preview {
    position: relative;
    display: flex;
    justify-content: center;
}

.pan-card-mockup {
    width: 100%;
    max-width: 440px;
    height: 280px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    border-radius: 16px;
    border: 2px solid #CBD5E1;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pan-card-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
}

.card-header-gov {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid #CBD5E1;
    padding-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.gov-emblem-box {
    font-size: 1.6rem;
    color: #1E3A8A;
}

.gov-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.gov-text .hindi-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E3A8A;
}

.gov-text .eng-text {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: 0.5px;
}

.gov-text .gov-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748B;
}

.card-chip-gold {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #FEF08A, #CA8A04);
    border-radius: 6px;
    border: 1px solid #A16207;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.6);
}

.card-body-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 0.5rem 0;
}

.photo-container {
    width: 95px;
    height: 115px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #94A3B8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    flex-shrink: 0;
    background: #E2E8F0;
}

.applicant-pan-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.details-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.card-field label {
    font-size: 0.6rem;
    color: #475569;
    font-weight: 800;
    display: block;
    letter-spacing: 0.3px;
}

.val-placeholder {
    font-weight: 800;
    font-size: 0.85rem;
    color: #0F172A;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pan-number-highlight {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-top: 0.2rem;
}

.pan-num-glow {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1E40AF;
    letter-spacing: 2px;
    font-family: 'Inter', monospace, sans-serif;
}

.card-footer-gov {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E2E8F0;
    padding-top: 0.4rem;
}

.signature-box {
    display: flex;
    flex-direction: column;
}

.sign-script {
    font-family: 'Brush Script MT', 'cursive', cursive;
    font-size: 1.15rem;
    color: #0F172A;
    line-height: 1;
    font-style: italic;
}

.signature-box small {
    font-size: 0.58rem;
    color: #64748B;
    font-weight: 700;
}

.qr-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-chip {
    font-size: 0.72rem;
    font-weight: 700;
    color: #047857;
    background: #ECFDF5;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    border: 1px solid #A7F3D0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hologram {
    color: var(--accent-green);
    font-weight: 700;
}

.signature-line {
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-size: 1rem;
    color: #1E293B;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border-color);
}

.badge-fast {
    top: 20px;
    left: -20px;
}

.badge-fast i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.badge-secure {
    bottom: -15px;
    right: -10px;
}

.badge-secure i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    margin-bottom: 3.5rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.popular {
    border: 2px solid var(--primary);
    background: white;
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.icon-blue { background: #DBEAFE; color: #1D4ED8; }
.icon-orange { background: #FFEDD5; color: #C2410C; }
.icon-green { background: #D1FAE5; color: #047857; }
.icon-purple { background: #EDE9FE; color: #6D28D9; }

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--accent-green);
}

/* Apply Section & Form Wizard */
.apply-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #EFF6FF 100%);
}

.form-wrapper-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-header-title h2 {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-header-title p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-service-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Step Progress Indicator */
.step-progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    transition: var(--transition);
    z-index: 1;
}

.step-progress-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: white;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-item.active .step-number {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 6px var(--primary-light);
}

.step-item.completed .step-number {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.step-item.active .step-label {
    color: var(--primary);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.step-active,
.form-step.active {
    display: block !important;
}

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

.step-heading {
    margin-bottom: 2rem;
}

.step-heading h3 {
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
}

.step-heading p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Controls & Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.col-12 { grid-column: span 12; }
.col-md-9 { grid-column: span 9; }
.col-md-6 { grid-column: span 6; }
.col-md-4 { grid-column: span 4; }
.col-md-3 { grid-column: span 3; }

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

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.form-label.required::after {
    content: ' *';
    color: #EF4444;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #FFFFFF;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-control.is-invalid {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.text-uppercase {
    text-transform: uppercase;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-with-icon input {
    padding-left: 2.75rem;
}

.error-msg {
    display: none;
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    font-weight: 500;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Custom Radio Cards */
.radio-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card input {
    display: none;
}

.radio-card-content {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.radio-card input:checked + .radio-card-content {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.gender-radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: 0.5rem;
}

.gender-radio-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 500;
}

/* File Dropzone */
.upload-dropzone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    background: var(--bg-main);
    cursor: pointer;
    transition: var(--transition);
}

.upload-dropzone:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-dropzone i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.browse-text {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.file-input-hidden {
    display: none;
}

.file-preview-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-info i {
    font-size: 1.5rem;
    color: var(--primary);
}

.btn-remove-file {
    background: none;
    border: none;
    color: #EF4444;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Step Nav Buttons */
.step-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Review Summary Card */
.review-summary-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.badge-status-pending {
    background: #FEF3C7;
    color: #D97706;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.review-row {
    font-size: 0.9rem;
}

.review-row.col-full {
    grid-column: span 2;
}

.review-label {
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

.review-val {
    font-weight: 600;
    color: var(--text-primary);
}

/* Fee Breakdown Card */
.fee-breakdown-card {
    background: linear-gradient(135deg, #0A2540 0%, #1E3A8A 100%);
    color: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fee-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;

}

.fee-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #60A5FA;
}

.fee-note {
    font-size: 0.8rem;
    color: #93C5FD;
    margin-top: 0.5rem;
}

/* Declaration Checkbox */
.declaration-box {
    margin-bottom: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.declaration-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Track Section */
.track-section {
    padding: 5rem 0;
    background: white;
}

.track-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #0F172A 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.track-header h2 {
    color: white;
    font-size: 1.8rem;
}

.track-header p {
    color: #94A3B8;
}

.track-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #60A5FA;
}

.track-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.track-input-group input {
    flex: 1;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
}

.track-result-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    animation: fadeIn 0.4s ease;
}

.status-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-pill {
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

.pill-processing {
    background: #FEF3C7;
    color: #B45309;
}

.status-date {
    color: #94A3B8;
    font-size: 0.85rem;
}

.track-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.track-details-grid small {
    display: block;
    color: #94A3B8;
    margin-bottom: 0.2rem;
}

.track-details-grid strong {
    font-size: 1.1rem;
    color: white;
}

/* Timeline */
.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #94A3B8;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1E293B;
    border: 2px solid #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
}

.timeline-step.completed .timeline-dot {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.timeline-step.active .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.timeline-step.completed, .timeline-step.active {
    color: white;
    font-weight: 600;
}

/* Pricing Section */
.fee-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.featured-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
}

.pricing-header h3 {
    font-size: 1.4rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features li i {
    color: var(--accent-green);
}

.pricing-features li.disabled i {
    color: #EF4444;
}

/* Why Choose Us */
.why-us-section {
    padding: 5rem 0;
    background: white;
}

.features-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-box .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem auto;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQs */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--secondary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--secondary);
    color: white;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.contact-info-panel h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: #94A3B8;
    margin-bottom: 2rem;
}

.company-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.c-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: #60A5FA;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-info-item strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.c-info-item p, .c-info-item a {
    color: #CBD5E1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.quick-inquiry-panel {
    background: white;
    color: var(--text-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quick-inquiry-panel h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.main-footer {
    background: #071526;
    color: #94A3B8;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.text-white { color: white; }

.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94A3B8;
}

/* Modal Overlay & Card */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    padding: 2rem;
    text-align: center;
    color: white;
}

.modal-header.bg-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.ack-box {
    background: var(--primary-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1.25rem 0;
}

.ack-box small {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
}

.ack-box strong {
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.modal-details-list {
    text-align: left;
    background: var(--bg-main);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.modal-details-list div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.modal-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.modal-footer {
    padding: 1.25rem 2rem;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Notification Toast */
.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInRight 0.3s ease;
}

.toast-success { background: var(--accent-green); }
.toast-error { background: #EF4444; }

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Responsive Media Queries - Ultra Fluid Mobile Engine */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-list, .hero-cta-group, .hero-trust-row {
        justify-content: center;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-md-9, .col-md-6, .col-md-4, .col-md-3 {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile Clean Stack */
    .top-bar {
        padding: 0.35rem 0.5rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .top-info {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        font-size: 0.72rem;
    }

    .top-info .divider {
        display: none;
    }

    .top-right-features {
        display: none !important;
    }

    /* Navbar Header Mobile */
    .navbar {
        height: 60px;
        padding: 0 0.75rem;
    }

    .brand-logo {
        gap: 0.5rem;
        max-width: calc(100% - 60px);
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .brand-name {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .sub-text {
        display: none; /* Hide subtitle on small header to prevent overlapping */
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn-primary {
        display: none; /* Hide top bar button on mobile, available in hero & mobile drawer */
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #F1F5F9;
        border-radius: var(--radius-sm);
        font-size: 1.25rem;
        color: var(--secondary);
        border: 1px solid var(--border-color);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        z-index: 9999;
        gap: 1.25rem;
        overflow-y: auto;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0.75rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 2.5rem 0 3rem 0;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .trust-stat {
        align-items: center;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    /* PAN Card Mockup Mobile */
    .hero-card-preview {
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .pan-card-mockup {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0.85rem;
        border-radius: var(--radius-md);
        box-sizing: border-box;
    }

    .photo-box {
        width: 65px;
        height: 85px;
        font-size: 1.25rem;
    }

    .val-placeholder {
        font-size: 0.7rem;
        word-break: break-all;
    }

    .floating-badge {
        display: none !important;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    /* Form Wizard Mobile */
    .apply-section {
        padding: 3rem 0;
    }

    .form-wrapper-card {
        padding: 1.25rem 0.85rem;
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .form-header-title h2 {
        font-size: 1.35rem;
    }

    .step-progress-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.25rem;
        margin-bottom: 1.5rem;
        justify-items: center;
    }

    .step-progress-container::before, .step-progress-bar {
        display: none !important;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .step-label {
        display: none;
    }

    .radio-card-group {
        grid-template-columns: 1fr;
    }

    .gender-radio-group {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-row.col-full {
        grid-column: span 1;
    }

    /* Track Status Card Mobile */
    .track-section {
        padding: 3rem 0;
    }

    .track-card {
        padding: 1.25rem 0.85rem;
        border-radius: var(--radius-md);
    }

    .track-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .track-header h2 {
        font-size: 1.35rem;
    }

    .track-input-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .track-input-group input {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .track-input-group button {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .status-timeline {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 0.5rem;
    }

    .status-timeline::before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 20px;
    }

    .timeline-step {
        flex-direction: row;
        gap: 1rem;
    }

    /* Pricing & Footer Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Modal Actions & Mobile Styling */
.modal-footer-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-footer-actions .btn {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 576px) {
    .modal-card {
        width: 95%;
        margin: 10px;
    }

    .modal-header {
        padding: 1.25rem 1rem;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.25rem 1rem;
    }

    .ack-box strong {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .modal-footer-actions {
        flex-direction: column;
    }

    .modal-footer-actions .btn {
        width: 100%;
    }
}

/* Printable Receipt Styles (window.print) */
@media print {
    body * {
        visibility: hidden;
    }
    #printableReceipt, #printableReceipt * {
        visibility: visible;
    }
    #printableReceipt {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 20px;
        color: #000;
        background: #fff;
        font-family: Arial, sans-serif;
    }
    .receipt-header {
        text-align: center;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .receipt-header h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .receipt-header p {
        font-size: 12px;
        margin: 2px 0;
    }
    .receipt-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }
    .receipt-table th, .receipt-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
        font-size: 13px;
    }
    .receipt-table th {
        background-color: #f2f2f2;
        width: 35%;
    }
    .receipt-footer {
        margin-top: 30px;
        font-size: 11px;
        text-align: center;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }
}

/* FLOATING WHATSAPP CHATBOT WIDGET */
.whatsapp-chatbot-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
}

.whatsapp-tooltip {
    background: #FFFFFF;
    color: #1E293B;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: bounceTooltip 3s infinite ease-in-out;
    position: relative;
}

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

.online-dot {
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
    flex-shrink: 0;
}

.tooltip-text strong {
    display: block;
    font-size: 0.85rem;
    color: #0F172A;
    line-height: 1.2;
}

.tooltip-text small {
    font-size: 0.72rem;
    color: #64748B;
}

.tooltip-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #94A3B8;
    cursor: pointer;
    margin-left: 0.25rem;
}

.whatsapp-btn-float {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    background-color: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
    position: relative !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.whatsapp-btn-float:hover {
    background-color: #128C7E !important;
    transform: scale(1.08) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.65) !important;
}

.wa-svg-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    fill: #FFFFFF !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.online-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .whatsapp-chatbot-widget {
        bottom: 15px !important;
        right: 15px !important;
    }
    .whatsapp-tooltip {
        display: none !important; /* Hide text box tooltip on mobile to keep screen 100% clean */
    }
    .whatsapp-btn-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
    .wa-svg-icon {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
    }
}
