/* ==========================================================================
   Enigmax Agency — Stylesheet v7.5 Multi-Page & Web Hosting Architecture
   Dark Glassmorphism, Neon Lime & Cyan Accents, Enterprise Responsiveness
   ========================================================================== */

:root {
    --bg-main: #07090e;
    --bg-card: rgba(13, 18, 30, 0.75);
    --bg-card-hover: rgba(20, 28, 46, 0.9);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(200, 255, 0, 0.35);
    
    --neon-lime: #c8ff00;
    --neon-cyan: #00f2fe;
    --neon-emerald: #10b981;
    --neon-purple: #a855f7;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    --shadow-glow: 0 0 25px rgba(200, 255, 0, 0.15);
    --shadow-cyan: 0 0 25px rgba(0, 242, 254, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(200, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(0, 242, 254, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 40%),
                var(--bg-main);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--neon-lime);
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.2);
}

.nav-badge {
    background: var(--neon-lime);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.4rem;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--neon-lime);
    color: #07090e;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.25);
}

.btn-primary:hover {
    background: #d8ff33;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 255, 0, 0.4);
}

.btn-secondary {
    background: rgba(13, 18, 30, 0.8);
    color: #fff;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(25, 34, 54, 0.9);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

.btn-outline-lime {
    background: transparent;
    color: var(--neon-lime);
    border: 1px solid var(--neon-lime);
}

.btn-outline-lime:hover {
    background: var(--neon-lime);
    color: #07090e;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-live-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-lime);
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-live-link:hover {
    background: var(--neon-lime);
    color: #07090e;
    border-color: var(--neon-lime);
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.4);
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neon-lime);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-lime);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   Page Headers (Subpages) & Hero Section
   ========================================================================== */
.page-hero {
    padding: 140px 0 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
    background: radial-gradient(circle at 50% 30%, rgba(200, 255, 0, 0.06) 0%, transparent 60%);
}

.hero {
    padding: 160px 0 90px 0;
    position: relative;
}

.hero-content, .page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title, .page-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--neon-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-cyan {
    background: linear-gradient(135deg, #ffffff 30%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle, .page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Stats Grid
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 24px 16px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(200, 255, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-lime);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header, .section-title-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-tag, .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--neon-cyan, #00f2fe);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 auto 18px auto;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.12);
    width: fit-content;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: center;
}

.section-subtitle, .section-sub {
    font-size: 1.08rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   Hosting Packages & Toggle Switch
   ========================================================================== */
.hosting-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.toggle-label.active {
    color: #fff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glass);
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: var(--neon-lime);
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-lime);
}

input:checked + .slider {
    background-color: rgba(200, 255, 0, 0.2);
    border-color: var(--neon-lime);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Hosting Cards Grid */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 60px;
}

.hosting-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hosting-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: var(--shadow-glow);
}

.hosting-card.popular {
    border-color: var(--neon-lime);
    background: rgba(16, 24, 40, 0.85);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.12);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-lime);
    color: #07090e;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(200, 255, 0, 0.35);
}

.plan-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-target {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 16px;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
}

.plan-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.plan-features li {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(200, 255, 0, 0.15);
    color: var(--neon-lime);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ==========================================================================
   Domain Checker Bar
   ========================================================================== */
.domain-search-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
    margin-bottom: 60px;
    text-align: center;
}

.domain-form {
    display: flex;
    gap: 12px;
    max-width: 650px;
    margin: 20px auto 20px auto;
}

.domain-input {
    flex: 1;
    background: rgba(7, 9, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.domain-input:focus {
    border-color: var(--neon-lime);
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.2);
}

.domain-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.domain-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.domain-pill strong {
    color: var(--neon-lime);
}

/* ==========================================================================
   Services Grid & Cards
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 32px 26px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: rgba(0, 242, 254, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--neon-cyan);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    margin-top: auto;
}

.service-features li {
    font-size: 0.86rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "•";
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==========================================================================
   Portfolio Grid & Filter Buttons
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(13, 18, 30, 0.8);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: rgba(200, 255, 0, 0.1);
    border-color: var(--neon-lime);
    color: var(--neon-lime);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: rgba(200, 255, 0, 0.35);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.project-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0d121e;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.03);
}

.project-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.project-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-cyan);
    padding: 3px 8px;
    border-radius: 6px;
}

.project-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-subtitle {
    font-size: 0.88rem;
    color: var(--neon-lime);
    margin-bottom: 12px;
    font-weight: 600;
}

.project-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-glass);
    padding-top: 18px;
    margin-top: auto;
}

/* ==========================================================================
   Specs Comparison Table
   ========================================================================== */
.specs-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow-x: auto;
    backdrop-filter: blur(12px);
    margin-bottom: 60px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.specs-table th, .specs-table td {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border-glass);
}

.specs-table th {
    background: rgba(18, 26, 42, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.specs-table td {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.specs-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: rgba(200, 255, 0, 0.35);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--neon-lime);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   Contact & Estimator Form
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 255, 0, 0.1);
    color: var(--neon-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.form-control {
    width: 100%;
    background: rgba(7, 9, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--neon-lime);
    box-shadow: 0 0 12px rgba(200, 255, 0, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#main-footer {
    background: #040609;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--neon-lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Modal Dialogs (Case Study & Order Modal)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 9, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #0c111c;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #07090e;
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-actions .btn {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hosting-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title, .page-title {
        font-size: 2.2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .domain-form {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}



/* ==========================================================================
   Hybrid Floating Chat Widget (Bottom Right)
   ========================================================================== */
.chat-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
}

.chat-widget-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #0d121d;
    border: 1px solid var(--neon-lime, #c8ff00);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(200, 255, 0, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget-toggle:hover {
    transform: translateY(-3px) scale(1.03);
    background: #141c2e;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 28px rgba(200, 255, 0, 0.4);
}

.chat-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.chat-widget-box {
    position: fixed !important;
    bottom: 84px !important;
    right: 24px !important;
    width: 360px !important;
    max-width: calc(100vw - 32px) !important;
    background: #0d121d !important;
    border: 1px solid rgba(200, 255, 0, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(200, 255, 0, 0.12) !important;
    backdrop-filter: blur(25px) !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    display: none;
    flex-direction: column !important;
    animation: chatSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.chat-widget-box.active {
    display: flex !important;
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(15px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-box-header {
    background: linear-gradient(135deg, rgba(20, 28, 45, 0.95), rgba(13, 18, 29, 0.98));
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(200, 255, 0, 0.12);
    border: 1px solid rgba(200, 255, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: var(--neon-lime, #c8ff00);
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.2);
}

.chat-avatar img {
    max-height: 24px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.chat-avatar i {
    font-size: 1.1rem;
    color: var(--neon-lime, #c8ff00);
}

.chat-header-name {
    font-weight: 800;
    font-size: 0.92rem;
    color: #fff;
    line-height: 1.2;
}

.chat-header-status {
    font-size: 0.73rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}

.chat-box-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

.chat-box-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.chat-box-body {
    padding: 18px 20px 20px;
}

.chat-welcome-msg {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 16px;
    line-height: 1.45;
}

.chat-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.25s ease;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2ae06d, #149b8c);
}

.chat-whatsapp-btn .wa-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.wa-btn-text {
    display: flex;
    flex-direction: column;
}

.wa-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.wa-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

.chat-divider {
    text-align: center;
    position: relative;
    margin: 16px 0;
}

.chat-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.chat-divider span {
    position: relative;
    background: #0d121d;
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.chat-form-group {
    margin-bottom: 10px;
}

.chat-input, .chat-textarea {
    width: 100%;
    background: rgba(7, 9, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.chat-input::placeholder, .chat-textarea::placeholder {
    color: #64748b;
}

.chat-input:focus, .chat-textarea:focus {
    border-color: var(--neon-lime, #c8ff00);
    box-shadow: 0 0 12px rgba(200, 255, 0, 0.2);
    background: rgba(7, 9, 14, 0.95);
}

.chat-textarea {
    resize: none;
}

.chat-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c8ff00, #00f2fe);
    border: none;
    color: #07090e;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.25);
    margin-top: 4px;
}

.chat-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 255, 0, 0.4);
    filter: brightness(1.05);
}

.chat-success-feedback {
    display: none !important;
    text-align: center;
    padding: 24px 14px;
    color: #fff;
    background: rgba(200, 255, 0, 0.06);
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 12px;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.chat-success-feedback.active {
    display: block !important;
}



/* ==========================================================================
   LUXURY ULTRA-MODERN DROPDOWN MENU
   ========================================================================== */
.nav-dropdown-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-chevron {
    font-size: 0.62rem;
    margin-left: 5px;
    color: var(--text-muted);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.nav-dropdown-item:hover .nav-chevron {
    transform: rotate(180deg);
    color: var(--neon-lime);
}

.dropdown-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

.nav-dropdown-item:hover .dropdown-menu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    width: 370px;
    background: #080c14;
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.95),
                0 0 35px rgba(200, 255, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 6px 10px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-category-title span:first-child {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
}

.dropdown-badge-new {
    background: rgba(200, 255, 0, 0.15);
    color: var(--neon-lime);
    border: 1px solid rgba(200, 255, 0, 0.35);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dropdown-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-card:hover {
    background: rgba(200, 255, 0, 0.08);
    border-color: rgba(200, 255, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dropdown-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 255, 0, 0.12);
    border: 1px solid rgba(200, 255, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-lime);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.dropdown-card:hover .dropdown-card-icon {
    background: var(--neon-lime);
    color: #000;
    box-shadow: 0 0 18px rgba(200, 255, 0, 0.5);
}

.dropdown-card-content {
    flex: 1;
    min-width: 0;
}

.dropdown-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.dropdown-card:hover .dropdown-card-title {
    color: var(--neon-lime);
}

.card-arrow {
    font-size: 0.78rem;
    color: var(--neon-lime);
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.2s ease;
}

.dropdown-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.dropdown-card-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

.dropdown-footer-link {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-all-btn:hover {
    color: #000;
    background: var(--neon-lime);
    border-color: var(--neon-lime);
    font-weight: 700;
    box-shadow: 0 0 18px rgba(200, 255, 0, 0.35);
}

.dropdown-all-btn i {
    font-size: 0.82rem;
    color: var(--neon-lime);
    transition: all 0.2s ease;
}

.dropdown-all-btn:hover i {
    color: #000;
    transform: translateX(4px);
}

/* ==========================================================================
   HYBRID FLOATING CHAT WIDGET & POPUP
   ========================================================================== */
.chat-widget-wrapper {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 999999 !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.chat-widget-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #c8ff00, #95cc00) !important;
    color: #07090e !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 0.92rem !important;
    box-shadow: 0 8px 25px rgba(200, 255, 0, 0.4) !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.chat-widget-toggle:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(200, 255, 0, 0.6) !important;
}
.chat-widget-box {
    display: none;
    position: absolute !important;
    bottom: 60px !important;
    right: 0 !important;
    width: 360px !important;
    max-width: calc(100vw - 30px) !important;
    background: #0d121f !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 255, 0, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    overflow: hidden !important;
    z-index: 1000000 !important;
    box-sizing: border-box !important;
    animation: chatSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(15px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-box-header {
    background: linear-gradient(135deg, #131b2e, #0d121f) !important;
    padding: 16px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
}
.chat-header-user {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.chat-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(200, 255, 0, 0.12) !important;
    border: 1px solid rgba(200, 255, 0, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}
.chat-avatar img {
    max-width: 24px !important;
    max-height: 24px !important;
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    display: block !important;
}
.chat-avatar i {
    display: none !important;
}
.chat-header-name {
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}
.chat-header-status {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 3px !important;
}
.chat-status-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #22c55e !important;
    box-shadow: 0 0 8px #22c55e !important;
    display: inline-block !important;
}
.chat-box-close {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}
.chat-box-close:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}
.chat-box-body {
    padding: 18px 20px 20px !important;
    box-sizing: border-box !important;
}
.chat-welcome-msg {
    font-size: 0.88rem !important;
    color: #cbd5e1 !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.45 !important;
}
.chat-whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3) !important;
    transition: all 0.25s ease !important;
    margin-bottom: 16px !important;
    box-sizing: border-box !important;
}
.chat-whatsapp-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45) !important;
}
.wa-icon {
    font-size: 1.3rem !important;
    line-height: 1 !important;
}
.wa-btn-text {
    display: flex !important;
    flex-direction: column !important;
}
.wa-title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}
.wa-sub {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
}
.chat-divider {
    text-align: center !important;
    position: relative !important;
    margin: 16px 0 !important;
}
.chat-divider::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
.chat-divider span {
    position: relative !important;
    background: #0d121f !important;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    color: #64748b !important;
}
.chat-form-group {
    margin-bottom: 10px !important;
}
.chat-input,
.chat-textarea {
    width: 100% !important;
    background: rgba(7, 9, 14, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-family: inherit !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease !important;
}
.chat-input:focus,
.chat-textarea:focus {
    border-color: #c8ff00 !important;
    box-shadow: 0 0 10px rgba(200, 255, 0, 0.15) !important;
}
.chat-textarea {
    resize: none !important;
    min-height: 65px !important;
}
.chat-submit-btn {
    width: 100% !important;
    background: #c8ff00 !important;
    color: #07090e !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.25) !important;
    margin-top: 4px !important;
    box-sizing: border-box !important;
}
.chat-submit-btn:hover {
    background: #d4ff33 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4) !important;
}
.chat-success-feedback {
    display: none !important;
    background: rgba(34, 197, 94, 0.12) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: center !important;
    color: #86efac !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   UNIVERSAL BULLETPROOF CHAT WIDGET POPUP STYLING (MATCHES ALL HTML VARIATIONS)
   ========================================================================== */
#chat-widget-box,
.chat-widget-box {
    position: absolute !important;
    bottom: 60px !important;
    right: 0 !important;
    width: 360px !important;
    max-width: calc(100vw - 30px) !important;
    background: #0d121f !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 255, 0, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    overflow: hidden !important;
    z-index: 1000000 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

#chat-widget-box *,
.chat-widget-box * {
    box-sizing: border-box !important;
}

/* Force image constraints under all conditions */
#chat-widget-box img,
.chat-widget-box img,
.chat-avatar img,
.chat-avatar-badge img,
.chat-header img,
.chat-box-header img {
    max-width: 24px !important;
    max-height: 24px !important;
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

/* Headers */
#chat-widget-box .chat-box-header,
#chat-widget-box .chat-header,
.chat-widget-box .chat-box-header,
.chat-widget-box .chat-header {
    background: linear-gradient(135deg, #131b2e, #0d121f) !important;
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* User / Avatar info container */
.chat-header-user,
.chat-user-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.chat-avatar,
.chat-avatar-badge {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: rgba(200, 255, 0, 0.12) !important;
    border: 1px solid rgba(200, 255, 0, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

/* Titles and subheadings */
.chat-header-name,
.chat-title,
.chat-name {
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.chat-header-status,
.chat-status,
.chat-online-status {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 3px !important;
}

.chat-status-dot,
.chat-online-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #22c55e !important;
    box-shadow: 0 0 8px #22c55e !important;
    display: inline-block !important;
}

/* Close Button */
#chat-widget-box button.chat-box-close,
#chat-widget-box button.chat-close,
.chat-widget-box .chat-box-close,
.chat-widget-box .chat-close {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
}

#chat-widget-box button.chat-box-close:hover,
#chat-widget-box button.chat-close:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}

/* Body container */
#chat-widget-box .chat-box-body,
#chat-widget-box .chat-body,
.chat-widget-box .chat-box-body,
.chat-widget-box .chat-body {
    padding: 18px 20px 20px !important;
}

#chat-widget-box p,
.chat-welcome-msg,
.chat-body p {
    font-size: 0.88rem !important;
    color: #cbd5e1 !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.45 !important;
}

/* WhatsApp CTA Button */
#chat-widget-box a[href*="wa.me"],
.chat-whatsapp-btn,
.chat-action-whatsapp {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3) !important;
    margin-bottom: 14px !important;
}

/* Divider */
.chat-divider {
    text-align: center !important;
    position: relative !important;
    margin: 14px 0 !important;
}

.chat-divider::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.chat-divider span {
    position: relative !important;
    background: #0d121f !important;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    color: #64748b !important;
}

/* Form inputs & textareas */
#chat-widget-box input,
#chat-widget-box textarea,
.chat-widget-box input,
.chat-widget-box textarea,
.chat-input,
.chat-textarea {
    width: 100% !important;
    background: rgba(7, 9, 14, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-family: inherit !important;
    outline: none !important;
    margin-bottom: 8px !important;
}

#chat-widget-box input:focus,
#chat-widget-box textarea:focus {
    border-color: #c8ff00 !important;
    box-shadow: 0 0 10px rgba(200, 255, 0, 0.15) !important;
}

#chat-widget-box textarea,
.chat-textarea {
    resize: none !important;
    min-height: 60px !important;
}

/* Submit Button */
#chat-widget-box button[type="submit"],
#chat-widget-box .chat-submit-btn,
.chat-widget-box button[type="submit"],
.chat-widget-box .chat-submit-btn {
    width: 100% !important;
    background: #c8ff00 !important;
    color: #07090e !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.25) !important;
    margin-top: 4px !important;
}

#chat-widget-box button[type="submit"]:hover,
.chat-widget-box button[type="submit"]:hover {
    background: #d4ff33 !important;
    transform: translateY(-2px) !important;
}

.chat-success-feedback {
    display: none !important;
    background: rgba(34, 197, 94, 0.12) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: center !important;
    color: #86efac !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
}
