/**
 * InnerShed - WHMCS Twenty One Custom Theme
 * Unified dark theme design system
 */

/* ==========================================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
    /* Backgrounds */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #16161f;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;

    /* Accents */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --accent-glow: rgba(99, 102, 241, 0.4);

    /* Status colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Override Bootstrap primary */
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --blue: #6366f1;
    --indigo: #8b5cf6;
    --cyan: #06b6d4;
}

/* ==========================================================================
   2. BODY & BACKGROUND
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Grid Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Glow Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--accent-primary);
}

.bg-glow-2 {
    top: 50%;
    left: -200px;
    background: var(--accent-secondary);
}

.bg-glow-3 {
    bottom: -100px;
    right: 20%;
    background: var(--accent-tertiary);
}

/* Ensure content is above background */
#main-body,
header.header,
footer.footer,
.master-breadcrumb,
section {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

small, .small {
    color: var(--text-muted);
}

a {
    color: var(--accent-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
    text-decoration: none;
}

/* Gradient text utility */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */

header.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

header.header .topbar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
}

header.header .topbar .btn {
    color: var(--text-secondary);
    background: transparent;
    border: none;
}

header.header .topbar .btn:hover {
    color: var(--text-primary);
}

header.header .topbar .active-client .input-group-text {
    background-color: transparent;
    border: none;
    color: var(--text-muted);
}

header.header .topbar .btn-active-client {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--border-radius-md);
}

header.header .topbar .btn-active-client:hover {
    border-color: var(--accent-primary);
}

header.header .topbar .btn-return-to-admin {
    background: var(--accent-gradient);
    border: none;
    color: white;
}

/* Navbar */
header.header .navbar {
    background: transparent;
    padding: 16px 0;
}

header.header .navbar-brand {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

header.header .navbar-brand .logo-img {
    max-height: 40px;
}

header.header .navbar-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

header.header .navbar-brand .logo-text {
    font-weight: 700;
}

/* Search Box */
header.header .search {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

header.header .search .btn,
header.header .search .form-control {
    background: transparent;
    border: none;
    color: var(--text-primary);
    box-shadow: none;
}

header.header .search .form-control::placeholder {
    color: var(--text-muted);
}

header.header .search:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Toolbar */
header.header .toolbar .nav-link {
    color: var(--text-secondary);
}

header.header .toolbar .nav-link:hover {
    color: var(--text-primary);
}

header.header .toolbar .cart-btn .badge {
    background: var(--accent-gradient);
    border: none;
}

/* Main Navbar */
header.header .main-navbar-wrapper {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

header.header .main-navbar-wrapper .navbar-collapse {
    background-color: var(--bg-secondary);
}

#nav .nav-link,
header.header .navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 16px;
    transition: all var(--transition-fast);
}

#nav .nav-link:hover,
header.header .navbar-nav .nav-link:hover {
    color: var(--text-primary);
}

#nav .nav-item.active .nav-link,
header.header .navbar-nav .nav-item.active .nav-link {
    color: var(--accent-primary);
}

/* Dropdown Menus */
.dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--accent-gradient);
    color: white;
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* ==========================================================================
   5. CARDS & PANELS
   ========================================================================== */

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.card-title {
    color: var(--text-primary);
    margin-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid var(--border-color);
}

/* Sidebar Cards */
.sidebar .card {
    margin-bottom: 1.5rem;
}

.sidebar .card-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.sidebar .list-group-item {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.sidebar .list-group-item:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.sidebar .list-group-item.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

/* Dashboard Tiles */
.tiles .tile {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.tiles .tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.tiles .tile i {
    color: var(--accent-primary);
}

.tiles .tile .stat {
    color: var(--text-primary);
    font-weight: 700;
}

.tiles .tile .title {
    color: var(--text-secondary);
}

.tiles .tile .highlight {
    background: var(--accent-gradient) !important;
}

/* Panel styling */
.panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.panel-heading {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.panel-body {
    color: var(--text-secondary);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: 10px 20px;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--accent-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-gradient);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: var(--accent-gradient);
    transform: translateY(0);
}

.btn-secondary,
.btn-default {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover,
.btn-default:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

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

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

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

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

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: #000;
}

.btn-info {
    background-color: var(--info);
    border-color: var(--info);
}

.btn-link {
    color: var(--accent-primary);
}

.btn-link:hover {
    color: var(--accent-secondary);
}

/* ==========================================================================
   7. FORM ELEMENTS
   ========================================================================== */

.form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    padding: 12px 16px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--bg-secondary);
    opacity: 0.7;
}

/* Select */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b6b7b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Input Groups */
.input-group-text {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.input-group .form-control:focus ~ .input-group-append .input-group-text,
.input-group .form-control:focus ~ .input-group-prepend .input-group-text {
    border-color: var(--accent-primary);
}

.input-group-merge .input-group-text {
    background-color: transparent;
}

/* Labels */
label,
.form-control-label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-text {
    color: var(--text-muted);
}

/* Checkboxes and Radios */
.form-check-input {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* ==========================================================================
   8. TABLES
   ========================================================================== */

.table {
    color: var(--text-primary);
}

.table th {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
}

.table td {
    border-color: var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.05);
    color: var(--text-primary);
}

.table-bordered {
    border-color: var(--border-color);
}

.table-bordered th,
.table-bordered td {
    border-color: var(--border-color);
}

/* List Groups */
.list-group-item {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.list-group-item:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.list-group-item.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.list-group-item-action:focus {
    background-color: var(--bg-tertiary);
}

/* ==========================================================================
   9. MODALS
   ========================================================================== */

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    color: var(--text-primary);
}

.modal-body {
    color: var(--text-secondary);
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.modal .close {
    color: var(--text-muted);
    opacity: 1;
    text-shadow: none;
}

.modal .close:hover {
    color: var(--text-primary);
}

/* Language/Currency Modal */
.modal-localisation .modal-content {
    background-color: var(--bg-card);
}

.modal-localisation .item-selector .item {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.modal-localisation .item-selector .item:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.modal-localisation .item-selector .item.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

footer.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

footer.footer .nav-link {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

footer.footer .nav-link:hover {
    color: var(--text-primary);
}

footer.footer .btn {
    color: var(--text-secondary);
    border-color: var(--border-color);
}

footer.footer .btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

footer.footer .copyright {
    color: var(--text-muted);
}

footer.footer .list-inline-item a {
    color: var(--text-muted);
}

footer.footer .list-inline-item a:hover {
    color: var(--accent-primary);
}

/* ==========================================================================
   11. BREADCRUMBS
   ========================================================================== */

.master-breadcrumb {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--accent-primary);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ==========================================================================
   12. ALERTS & BADGES
   ========================================================================== */

.alert {
    border-radius: var(--border-radius-md);
    border: none;
}

.alert-info {
    background-color: rgba(6, 182, 212, 0.15);
    color: var(--info);
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

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

.alert a {
    color: inherit;
    text-decoration: underline;
}

/* Badges */
.badge {
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 500;
}

.badge-primary,
.badge-info {
    background: var(--accent-gradient);
}

.badge-success {
    background-color: var(--success);
}

.badge-warning {
    background-color: var(--warning);
    color: #000;
}

.badge-danger {
    background-color: var(--danger);
}

.badge-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* Client Alerts */
.client-alerts li {
    border-color: var(--border-color);
}

.client-alerts li a {
    color: var(--text-secondary);
}

.client-alerts li a:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* ==========================================================================
   13. LOGIN PAGE
   ========================================================================== */

.login-form .card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.login-form .card-body {
    padding: 3rem;
}

.login-form .card-footer {
    background-color: var(--bg-tertiary);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.login-form .card-footer a {
    color: var(--accent-primary);
}

/* Social Login */
.linked-accounts-form .btn {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.linked-accounts-form .btn:hover {
    border-color: var(--accent-primary);
}

/* ==========================================================================
   14. STORE / CART PAGES
   ========================================================================== */

/* Landing pages (store products) */
.landing-page {
    color: var(--text-primary);
}

.landing-page .hero {
    background-color: var(--bg-secondary);
}

.landing-page .hero h2,
.landing-page .hero h3 {
    color: var(--text-primary);
}

.landing-page .hero p {
    color: var(--text-secondary);
}

.landing-page .product-options .item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.landing-page .product-options .item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.landing-page .product-options h4 {
    color: var(--text-primary);
}

.landing-page .product-options p {
    color: var(--text-secondary);
}

.landing-page .product-options .price {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Cart */
.view-cart-items-header {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
}

.view-cart-items .item {
    border-color: var(--border-color);
}

.order-summary {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

/* Checkout */
.checkout .panel {
    background-color: var(--bg-card);
}

/* Action Icon Buttons */
.action-icon-btns a {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.action-icon-btns a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.action-icon-btns .ico-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--border-radius-md);
}

.action-icon-btns .ico-container i {
    color: var(--accent-primary);
}

/* ==========================================================================
   15. KNOWLEDGEBASE
   ========================================================================== */

/* KB Search */
.kb-search .form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

/* KB Categories */
.kb-category {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.kb-category:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.kb-category .fa-folder,
.kb-category i {
    color: var(--accent-primary);
}

/* KB Articles */
.kb-article-item {
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.kb-article-item:hover {
    border-left-color: var(--accent-primary);
    background-color: var(--bg-tertiary);
}

.kb-article-item a {
    color: var(--text-secondary);
}

.kb-article-item a:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   16. SUPPORT TICKETS
   ========================================================================== */

.ticket-list .list-group-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
    border-radius: var(--border-radius-md);
}

.ticket-list .list-group-item:hover {
    border-color: var(--accent-primary);
}

.ticket-reply {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
}

.ticket-reply.staff-reply {
    border-left: 3px solid var(--accent-primary);
}

/* ==========================================================================
   17. DOMAIN SEARCH
   ========================================================================== */

.domain-checker-container {
    background-color: var(--bg-secondary);
    padding: 60px 0;
}

.domain-checker-container h2 {
    color: var(--text-primary);
}

.domain-checker-container .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.domain-checker-container .form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.domain-pricing-table th,
.domain-pricing-table td {
    border-color: var(--border-color);
}

/* ==========================================================================
   18. PAGINATION
   ========================================================================== */

.pagination .page-link {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.pagination .page-link:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.pagination .page-item.active .page-link {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-muted);
}

/* ==========================================================================
   19. PROGRESS BARS
   ========================================================================== */

.progress {
    background-color: var(--bg-tertiary);
    border-radius: var(--border-radius-md);
}

.progress-bar {
    background: var(--accent-gradient);
}

/* ==========================================================================
   20. TOOLTIPS & POPOVERS
   ========================================================================== */

.tooltip-inner {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: var(--bg-card);
}

.popover {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

.popover-header {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.popover-body {
    color: var(--text-secondary);
}

/* ==========================================================================
   21. SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

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

/* ==========================================================================
   22. ANIMATIONS
   ========================================================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Staggered animations for cards */
#main-body .card {
    animation: fadeInUp 0.5s ease forwards;
}

#main-body .card:nth-child(2) { animation-delay: 0.1s; }
#main-body .card:nth-child(3) { animation-delay: 0.2s; }
#main-body .card:nth-child(4) { animation-delay: 0.3s; }

.tiles .tile {
    animation: fadeInUp 0.5s ease forwards;
}

.tiles .tile:nth-child(1) { animation-delay: 0.1s; }
.tiles .tile:nth-child(2) { animation-delay: 0.15s; }
.tiles .tile:nth-child(3) { animation-delay: 0.2s; }
.tiles .tile:nth-child(4) { animation-delay: 0.25s; }

/* ==========================================================================
   23. UTILITY CLASSES
   ========================================================================== */

.bg-dark-custom {
    background-color: var(--bg-secondary) !important;
}

.text-accent {
    color: var(--accent-primary) !important;
}

.border-accent {
    border-color: var(--accent-primary) !important;
}

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

/* ==========================================================================
   24. RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    header.header .navbar {
        padding: 12px 0;
    }

    header.header .main-navbar-wrapper .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
    }

    .card-body {
        padding: 1rem;
    }

    .login-form .card-body {
        padding: 2rem;
    }

    footer.footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .btn:not(.pricing-btn) {
        width: 100%;
        margin-bottom: 8px;
    }

    .btn + .btn {
        margin-left: 0;
    }

    h1, .h1 {
        font-size: 1.75rem;
    }

    h2, .h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   25. INNERSHED HOMEPAGE SECTIONS
   ========================================================================== */

/* Hero Section */
.innershed-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.innershed-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innershed-hero .hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

.innershed-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.innershed-hero .hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.innershed-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.innershed-hero .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.innershed-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.innershed-hero .hero-stats {
    display: flex;
    gap: 48px;
}

.innershed-hero .stat {
    text-align: left;
}

.innershed-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innershed-hero .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.innershed-hero .hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.innershed-hero .hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.innershed-hero .hero-card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.innershed-hero .hero-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.innershed-hero .hero-card-dot:nth-child(1) { background: #ff5f57; }
.innershed-hero .hero-card-dot:nth-child(2) { background: #febc2e; }
.innershed-hero .hero-card-dot:nth-child(3) { background: #28c840; }

.innershed-hero .code-block {
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.innershed-hero .code-line {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.innershed-hero .code-line:nth-child(1) { animation-delay: 0.5s; }
.innershed-hero .code-line:nth-child(2) { animation-delay: 0.7s; }
.innershed-hero .code-line:nth-child(3) { animation-delay: 0.9s; }
.innershed-hero .code-line:nth-child(4) { animation-delay: 1.1s; }
.innershed-hero .code-line:nth-child(5) { animation-delay: 1.3s; }
.innershed-hero .code-line:nth-child(6) { animation-delay: 1.5s; }

.innershed-hero .code-keyword { color: #c678dd; }
.innershed-hero .code-function { color: #61afef; }
.innershed-hero .code-string { color: #98c379; }
.innershed-hero .code-variable { color: #e5c07b; }
.innershed-hero .code-comment { color: var(--text-muted); }

.innershed-hero .floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.innershed-hero .floating-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.innershed-hero .badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.innershed-hero .badge-1 .floating-badge-icon {
    background: rgba(16, 185, 129, 0.2);
}

.innershed-hero .badge-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.innershed-hero .badge-2 .floating-badge-icon {
    background: rgba(99, 102, 241, 0.2);
}

.innershed-hero .badge-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2s;
}

.innershed-hero .badge-3 .floating-badge-icon {
    background: rgba(6, 182, 212, 0.2);
}

/* Credentials Section */
.innershed-credentials {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.innershed-credentials .credentials-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.innershed-credentials .credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.innershed-credentials .credential-item span {
    font-size: 0.85rem;
}

.innershed-credentials .credential-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Services Section */
.innershed-services {
    padding: 120px 0;
    position: relative;
}

.innershed-services .section-header,
.innershed-about .section-header,
.innershed-pricing .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.innershed-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.innershed-services .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.innershed-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.innershed-services .service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.innershed-services .service-card:hover::before {
    opacity: 1;
}

.innershed-services .service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-tertiary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.innershed-services .service-card:hover .service-icon {
    background: var(--accent-gradient);
    transform: scale(1.05);
}

.innershed-services .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.innershed-services .service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.innershed-services .service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.innershed-services .service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.innershed-services .service-feature::before {
    content: '\2713';
    color: var(--success);
    font-weight: 600;
}

/* About Section */
.innershed-about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.innershed-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innershed-about .about-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.innershed-about .about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.innershed-about .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.innershed-about .about-feature {
    display: flex;
    gap: 16px;
}

.innershed-about .about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.innershed-about .about-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.innershed-about .about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.innershed-about .about-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.innershed-about .tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.innershed-about .tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.innershed-about .tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.innershed-about .tech-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innershed-about .tech-item-icon svg {
    width: 32px;
    height: 32px;
}

.innershed-about .tech-item-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Pricing Section */
.innershed-pricing {
    padding: 120px 0;
    position: relative;
}

.innershed-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.innershed-pricing .pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.innershed-pricing .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.innershed-pricing .pricing-card.featured {
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.innershed-pricing .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.innershed-pricing .pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.innershed-pricing .pricing-price {
    margin-bottom: 32px;
}

.innershed-pricing .pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innershed-pricing .pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.innershed-pricing .pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.innershed-pricing .pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.innershed-pricing .pricing-feature:last-child {
    border-bottom: none;
}

.innershed-pricing .pricing-feature-icon {
    color: var(--success);
    font-weight: 600;
}

.innershed-pricing .pricing-btn {
    width: 100%;
}

/* Contact Section */
.innershed-contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.innershed-contact .contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.innershed-contact h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.innershed-contact > .container > .contact-content > .contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.innershed-contact .contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.innershed-contact .contact-method {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.innershed-contact .contact-method:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.innershed-contact .contact-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.innershed-contact .contact-method-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.innershed-contact .contact-method-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.innershed-contact .contact-method-text a {
    color: var(--accent-primary);
}

/* ==========================================================================
   26. INNERSHED HOMEPAGE RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .innershed-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .innershed-hero .hero-buttons {
        justify-content: center;
    }

    .innershed-hero .hero-stats {
        justify-content: center;
    }

    .innershed-hero .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .innershed-hero .floating-badge {
        display: none;
    }

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

    .innershed-about .about-content {
        grid-template-columns: 1fr;
    }

    .innershed-pricing .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .innershed-pricing .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

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

@media (max-width: 768px) {
    .innershed-hero {
        padding: 100px 0 60px;
    }

    .innershed-hero h1 {
        font-size: 2.25rem;
    }

    .innershed-hero .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .innershed-hero .stat {
        text-align: center;
    }

    .innershed-services .services-grid {
        grid-template-columns: 1fr;
    }

    .innershed-about .about-features {
        grid-template-columns: 1fr;
    }

    .innershed-about .tech-stack {
        grid-template-columns: repeat(3, 1fr);
    }

    .innershed-credentials .credentials-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .innershed-hero h1 {
        font-size: 1.875rem;
    }

    .innershed-hero .hero-buttons {
        flex-direction: column;
    }

    .innershed-about .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   27. INNERSHED FOOTER
   ========================================================================== */

.innershed-footer {
    padding: 80px 0 30px !important;
}

.innershed-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.innershed-footer .footer-brand {
    max-width: 300px;
}

.innershed-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.innershed-footer .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.innershed-footer .footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.innershed-footer .footer-column h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.innershed-footer .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.innershed-footer .footer-links a:hover {
    color: var(--text-primary);
}

.innershed-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.innershed-footer .footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.innershed-footer .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.innershed-footer .footer-locale-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.innershed-footer .footer-locale-btn:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.innershed-footer .footer-social {
    display: flex;
    gap: 12px;
}

.innershed-footer .footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.innershed-footer .footer-social a:hover {
    background: var(--accent-gradient);
    color: white;
}

@media (max-width: 1024px) {
    .innershed-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .innershed-footer .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .innershed-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .innershed-footer .footer-brand {
        grid-column: span 1;
    }

    .innershed-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .innershed-footer .footer-bottom-right {
        flex-direction: column;
    }
}

/* ==========================================================================
   28. WHMCS HOMEPAGE SECTIONS
   ========================================================================== */

.whmcs-products,
.whmcs-help,
.whmcs-account {
    padding: 80px 0;
}

.whmcs-products {
    background: var(--bg-secondary);
}

.whmcs-help .section-header,
.whmcs-account .section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Skip main body container on homepage */
body[data-phone-cc-input] #main-body .container {
    max-width: 100%;
    padding: 0;
}

body[data-phone-cc-input] #main-body > .container > .row {
    margin: 0;
}

body[data-phone-cc-input] #main-body > .container > .row > .col-12 {
    padding: 0;
    max-width: 100%;
}
