/* ============================================================
   Vhostex - Main Style Sheet
   Version: 1.0.0
   Author: Vhostex Team
   ============================================================ */

/* ============================================================
   ১. CSS VARIABLES (Root Variables)
   ============================================================ */
:root {
    /* Primary Colors */
    --primary: #6c63ff;
    --primary-dark: #5a50e0;
    --primary-light: #8b83ff;
    --primary-gradient: linear-gradient(135deg, #6c63ff, #a78bfa);
    
    /* Background Colors */
    --bg-primary: #080b14;
    --bg-secondary: #0f1524;
    --bg-card: #0f1524;
    --bg-input: #080b14;
    --bg-hover: #1a1f30;
    
    /* Border Colors */
    --border-color: #1e293b;
    --border-light: #2a2f45;
    
    /* Text Colors */
    --text-primary: #e8edf5;
    --text-secondary: #c8d0e0;
    --text-muted: #a8b2d1;
    --text-dark: #5a6378;
    
    /* Status Colors */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #fbbf24;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 4px 20px rgba(108, 99, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    
    /* Font */
    --font-family: 'Inter', 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   ২. RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   ৩. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================
   ৪. CONTAINER & LAYOUT
   ============================================================ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ============================================================
   ৫. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

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

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

.btn-white:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================
   ৬. NAVBAR
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    background: rgba(8, 11, 20, 0.92);
    backdrop-filter: blur(12px);
    z-index: 999;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo a {
    color: inherit;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-weight: 500;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-actions .btn {
    padding: 10px 28px;
    font-size: 0.85rem;
}

/* Mobile Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   ৭. HERO SECTION
   ============================================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 50px;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.12);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(108, 99, 255, 0.2);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.hero-stats .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.hero-stats .label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-image {
    flex: 1 1 40%;
    text-align: center;
    position: relative;
}

.hero-image .hero-icon {
    font-size: 14rem;
    color: #1a1f30;
    opacity: 0.6;
}

/* ============================================================
   ৮. DOMAIN SEARCH BAR
   ============================================================ */
.domain-search {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 8px 8px 8px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto 50px;
}

.domain-search .search-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.domain-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 14px 0;
    min-width: 140px;
}

.domain-search input::placeholder {
    color: var(--text-dark);
}

.domain-search input:focus {
    outline: none;
}

.domain-search select {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8b2d1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.domain-search .btn {
    border-radius: var(--radius-full);
    padding: 12px 32px;
    font-size: 0.95rem;
}

.domain-popular {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.domain-popular a {
    color: var(--text-muted);
    margin: 0 6px;
    transition: var(--transition);
}

.domain-popular a:hover {
    color: var(--primary);
}

/* ============================================================
   ৯. HOSTING PLANS
   ============================================================ */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.plan-card.popular {
    border-color: var(--primary);
    background: #111a2e;
}

.plan-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card .plan-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0 4px;
}

.plan-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-card .plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.plan-card ul {
    margin: 20px 0 28px;
}

.plan-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid #1a1f30;
}

.plan-card ul li:last-child {
    border-bottom: none;
}

.plan-card ul li i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

/* ============================================================
   ১০. FEATURES
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
}

.feature-item i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================================
   ১১. TESTIMONIALS
   ============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.testimonial-card .stars {
    color: var(--warning);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .client .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-card .client strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-card .client small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================================
   ১২. CTA SECTION
   ============================================================ */
.cta-section {
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-secondary), #111a2e);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section h2 span {
    color: var(--primary);
}

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

.cta-section .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   ১৩. AUTH PAGES (Login / Register)
   ============================================================ */
.auth-page {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.auth-page .auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-page .auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-page .auth-header p {
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.auth-page .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.auth-page .form-group input,
.auth-page .form-group textarea,
.auth-page .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-family);
}

.auth-page .form-group input:focus,
.auth-page .form-group textarea:focus,
.auth-page .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-page .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.auth-page .btn {
    width: 100%;
    text-align: center;
}

.auth-page .auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
}

.auth-page .auth-switch a {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.auth-page .auth-switch a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ============================================================
   ১৪. DASHBOARD
   ============================================================ */
.dashboard-welcome {
    padding: 40px 0;
}

.dashboard-welcome h1 {
    font-size: 2.4rem;
    margin-bottom: 4px;
}

.dashboard-welcome p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(108, 99, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}

.dash-stat-card .stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.dash-stat-card .stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   ১৫. TABLES
   ============================================================ */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table th {
    text-align: left;
    padding: 12px 14px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    padding: 12px 14px;
    border-bottom: 1px solid #1a1f30;
}

.table tr:last-child td {
    border-bottom: none;
}

.table-hover tr:hover td {
    background: rgba(108, 99, 255, 0.05);
}

/* ============================================================
   ১৬. BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary-light);
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge-warning {
    background: rgba(251, 191, 36, 0.15);
    color: var(--warning);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

.badge-dark {
    background: rgba(90, 99, 120, 0.15);
    color: var(--text-dark);
}

/* ============================================================
   ১৭. ALERTS
   ============================================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.alert-warning {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--info);
}

/* ============================================================
   ১৮. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

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

/* ============================================================
   ১৯. POPUP / MODAL
   ============================================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInPopup 0.4s ease;
}

.popup-overlay.show {
    display: flex;
}

@keyframes fadeInPopup {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 92%;
    padding: 40px 32px 32px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.popup-box .close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.6rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}

.popup-box .close-btn:hover {
    color: #fff;
}

.popup-box img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.popup-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.popup-box h2 span {
    color: var(--primary);
}

.popup-box p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 22px;
}

.popup-box .btn {
    width: 100%;
    text-align: center;
}

.popup-box .popup-footer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.popup-box .popup-footer a {
    color: var(--primary);
    cursor: pointer;
}

/* ============================================================
   ২০. PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    color: #fff;
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ============================================================
   ২১. FORMS
   ============================================================ */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group .help-text {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ============================================================
   ২২. FOOTER
   ============================================================ */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #fff;
}

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

.footer-col ul a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-bottom .heart {
    color: var(--danger);
    margin: 0 4px;
}

/* ============================================================
   ২৩. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .container {
        padding: 0 20px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-image .hero-icon {
        font-size: 10rem;
    }
    .hero-stats {
        gap: 30px;
    }
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .navbar {
        flex-wrap: wrap;
    }
    .nav-links {
        gap: 20px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }
    
    .nav-links {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        flex: 1 1 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-image {
        flex: 1 1 100%;
    }
    
    .hero-image .hero-icon {
        font-size: 7rem;
    }
    
    /* Domain Search */
    .domain-search {
        border-radius: var(--radius-md);
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .domain-search input {
        padding: 10px 0;
    }
    
    .domain-search .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Plans */
    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    /* Section */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Auth */
    .auth-page {
        margin: 30px 16px;
        padding: 30px 20px;
    }
    
    /* Dashboard */
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Popup */
    .popup-box {
        padding: 30px 20px 24px;
    }
    
    .popup-box h2 {
        font-size: 1.4rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 8px 10px;
    }
}

/* ============================================================
   ২৪. UTILITY CLASSES
   ============================================================ */
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-grid {
    display: grid !important;
}

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

.gap-8 {
    gap: 8px;
}
.gap-16 {
    gap: 16px;
}
.gap-24 {
    gap: 24px;
}
.gap-32 {
    gap: 32px;
}

.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}

.p-16 {
    padding: 16px;
}
.p-24 {
    padding: 24px;
}
.p-32 {
    padding: 32px;
}

.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}

.text-muted {
    color: var(--text-muted);
}
.text-primary {
    color: var(--primary);
}
.text-success {
    color: var(--success);
}
.text-danger {
    color: var(--danger);
}
.text-warning {
    color: var(--warning);
}

.bg-primary {
    background: var(--primary);
}
.bg-success {
    background: var(--success);
}
.bg-danger {
    background: var(--danger);
}

.rounded {
    border-radius: var(--radius-sm);
}
.rounded-md {
    border-radius: var(--radius-md);
}
.rounded-lg {
    border-radius: var(--radius-lg);
}
.rounded-full {
    border-radius: var(--radius-full);
}

.shadow {
    box-shadow: var(--shadow-sm);
}
.shadow-md {
    box-shadow: var(--shadow-md);
}
.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   ২৫. SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================================
   ২৬. SELECTION
   ============================================================ */
::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   END OF CSS
   ============================================================ */