@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');
:root {
    /* Brand Palette */
    --primary-50:  #e0f7fa;
    --primary-100: #b2ebf2;
    --primary-200: #80deea;
    --primary-300: #4dd0e1;
    --primary-400: #26c6da;
    --primary-500: #00bcd4;
    --primary-600: #00acc1;
    --primary-700: #0097a7;
    --primary-800: #00838f;
    --primary-900: #006064;
    --gradient-start: #00bcd4;
    --gradient-end:   #0097a7;
    --accent-color:   #00e5ff;
    --dark-bg:  #0a1929;
    --light-bg: #f0fdff;
    --saloprimary: #00a5b8;

    /* Semantic tokens — Light Mode */
    --bg-primary:    #ffffff;
    --bg-secondary:  var(--light-bg);
    --bg-card:       #ffffff;
    --bg-navbar:     rgba(255,255,255,0.95);
    --text-primary:  #0a1929;
    --text-secondary:#4a6070;
    --text-muted:    #7a90a0;
    --border-color:  #e0f0f5;
    --shadow-sm:     0 2px 8px rgba(0,188,212,0.08);
    --shadow-md:     0 8px 32px rgba(0,188,212,0.12);
    --shadow-lg:     0 20px 60px rgba(0,188,212,0.16);
    --shadow-card:   0 4px 20px rgba(0,150,170,0.10);

    /* Typography */
    --font-display: '<?php echo "".$site_adresi."";?>', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    /* Spacing */
    --section-py: 5rem;
    --card-radius: 16px;
    --btn-radius:  10px;

    /* Transitions */
    --transition-fast:   0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow:   0.4s cubic-bezier(0.4,0,0.2,1);

    /* Gradients */
    --gradient-brand:   linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    --gradient-glow:    linear-gradient(135deg, rgba(0,188,212,0.15), rgba(0,151,167,0.05));
    --gradient-hero:    linear-gradient(135deg, #0a1929 0%, #013a4a 50%, #004d5a 100%);
    --gradient-card:    linear-gradient(145deg, rgba(0,188,212,0.05), rgba(255,255,255,0));
}

/* Dark Mode tokens */
[data-bs-theme="dark"] {
    --bg-primary:    #0a1929;
    --bg-secondary:  #0d2137;
    --bg-card:       #0f2840;
    --bg-navbar:     rgba(10,25,41,0.97);
    --text-primary:  #e8f5f8;
    --text-secondary:#8db8c8;
    --text-muted:    #5a8090;
    --border-color:  rgba(0,188,212,0.15);
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);
    --shadow-card:   0 4px 20px rgba(0,0,0,0.4);
    --gradient-card: linear-gradient(145deg, rgba(0,188,212,0.08), rgba(255,255,255,0));
}

/* ── Base Reset & Typography ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

.salotak{
  color: var(--saloprimary) !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background-color var(--transition-slow), color var(--transition-slow);
    overflow-x: hidden;
}

.logo-img {
    max-width: 160px !important;
}

/* Brand-styled tables */
.table {
  --bs-table-bg: var(--bg-card, #ffffff);
  --bs-table-color: var(--text-primary, #0a1929);
  --bs-table-border-color: var(--border-color, #e0f0f5);
  --bs-table-striped-bg: rgba(0, 188, 212, 0.05);
  --bs-table-striped-color: var(--text-primary, #0a1929);
  --bs-table-hover-bg: rgba(0, 188, 212, 0.08);
  --bs-table-hover-color: var(--text-primary, #0a1929);
  border-color: var(--border-color, #e0f0f5);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.925rem;
}

.table > :not(caption) > * > * {
  border-bottom-color: var(--border-color, #e0f0f5);
  padding: 0.7rem 0.9rem;
  vertical-align: middle;
}

.table thead th {
  background: linear-gradient(135deg, var(--primary-500, #00bcd4), var(--primary-700, #0097a7));
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
}

.table thead th:first-child { border-top-left-radius: 6px; }
.table thead th:last-child { border-top-right-radius: 6px; }

.table-sm > :not(caption) > * > * {
  padding: 0.45rem 0.7rem;
}

.table-bordered {
  border: 1px solid var(--border-color, #e0f0f5);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 188, 212, 0.08));
}

.table-bordered > :not(caption) > * { border-width: 0; }

.table-bordered > :not(caption) > * > * {
  border-width: 0 0 1px 0;
  border-color: var(--border-color, #e0f0f5);
}

.table-bordered tbody tr:last-child > * { border-bottom: none; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0, 188, 212, 0.04);
  color: var(--text-primary, #0a1929);
}

.table-hover > tbody > tr:hover > * {
  background-color: rgba(0, 188, 212, 0.09);
  color: var(--text-primary, #0a1929);
}

.table tbody td { color: var(--text-secondary, #4a6070); }

.table tbody tr:last-child td:first-child { border-bottom-left-radius: 6px; }
.table tbody tr:last-child td:last-child { border-bottom-right-radius: 6px; }

.table-responsive {
  border-radius: 6px;
  border: 1px solid var(--border-color, #e0f0f5);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 188, 212, 0.08));
}

.table-responsive > .table {
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}



/* ── Links ────────────────────────────────────────────────── */
a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--primary-400);
    text-decoration: none;
}
a:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 3px;
    border-radius: 4px;
}




a.product {
    color: var(--text-secondary, #0a1929);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-family: var(--font-display);
    font-weight: 200;
}
a:hover {
    color: var(--primary-400);
    text-decoration: none;
}
a:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 3px;
    border-radius: 4px;
}

--bs-table-bg: var(--bg-card, #ffffff);
--bs-table-color: var(--text-primary, #0a1929);
--bs-table-border-color: var(--border-color, #e0f0f5);
--bs-table-striped-bg: rgba(0, 188, 212, 0.05);
--bs-table-striped-color: var(--text-primary, #0a1929);
--bs-table-hover-bg: rgba(0, 188, 212, 0.08);
--bs-table-hover-color: var(--text-primary, #0a1929);
border-color: var(--border-color, #e0f0f5);


.faq-support-box {
    background: linear-gradient(135deg, rgba(0,188,212,.06), rgba(0,151,167,.04));
    border: 1px solid var(--border-color);
}

.faq-support-title {
    font-family: var(--font-display);
    font-weight: 700;
}

.faq-support-text {
    color: var(--text-secondary);
    font-size: .9rem;
}

  .buyut-resim {
    max-height: 100px !important;
    width: auto;
    transition: transform 0.3s ease; /* Yumuşak geçiş */
    cursor: pointer;
  }

  .buyut-resim:hover {
    transform: scale(1.2); /* %20 büyütür */
  }


.footer-links li a.active{
    color: var(--bg-primary);
    font-weight: bold;
}

.product-list-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--card-radius);padding:1rem;transition:all var(--transition-normal);height:100%;display:flex;flex-direction:column;}.product-list-card:hover{border-color:rgba(0,188,212,.3);box-shadow:var(--shadow-md);transform:translateY(-3px);}.product-thumb{width:100%;height:180px;object-fit:cover;border-radius:10px;background:var(--bg-secondary);}
.product-price-tag{font-family:var(--font-display);font-size:1.1rem;font-weight:800;color:var(--primary-600);}
.moq-badge{font-size:.72rem;background:rgba(0,188,212,.1);color:var(--primary-600);border-radius:50px;padding:.2rem .6rem;font-weight:600;}

.sub-action-link{display:flex;justify-content:space-between;align-items:center;padding:.5rem .75rem;border-radius:8px;color:var(--text-secondary);text-decoration:none;font-size:.875rem;transition:all var(--transition-fast);}
.sub-action-link:hover{background:rgba(0,188,212,.08);color:var(--primary-600);}

/* ── Headings ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1,.h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2,.h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3,.h3 { font-size: clamp(1.25rem, 3vw, 2rem); }

.pricing-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-text {
    text-align: left;
}

.feature-value {
    text-align: right;
    font-weight: 600;
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
    background: var(--primary-300);
    color: var(--dark-bg);
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--primary-400);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-600); }



.map-placeholder {
    width: 100%; height: 320px;
    background: var(--bg-secondary);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: .75rem;
    color: var(--text-muted); font-size: .875rem;
}
.office-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--card-radius); padding: 1.5rem; }


.auth-panel {
    min-height: 60vh;
    background: var(--gradient-hero);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; padding: 2rem 0;
}
.auth-panel::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(0,188,212,.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(0,229,255,.08) 0%, transparent 40%),
        linear-gradient(rgba(0,188,212,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,188,212,.05) 1px, transparent 1px);
    background-size: auto, auto, 40px 40px, 40px 40px;
}
.social-btn {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    width: 100%; padding: .65rem; border-radius: 10px;
    font-size: .875rem; font-weight: 600;
    cursor: pointer; transition: all var(--transition-fast); text-decoration: none;
}
.social-btn.google  { background: var(--bg-secondary); border: 1.5px solid var(--border-color); color: var(--text-primary); }
.social-btn.linkedin { background: #0a66c2; border: none; color: white; }
.social-btn.google:hover  { border-color: var(--primary-400); transform: translateY(-1px); }
.social-btn.linkedin:hover { background: #084d96; color: white; transform: translateY(-1px); }

.step-indicator { display: flex; align-items: center; margin-bottom: 2rem; }
.step-dot {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; flex-shrink: 0;
    transition: all var(--transition-normal);
}
.step-dot.active  { background: var(--gradient-brand); color: white; box-shadow: 0 3px 12px rgba(0,188,212,.4); }
.step-dot.done    { background: rgba(16,185,129,.2); color: #10b981; }
.step-dot.pending { background: var(--border-color); color: var(--text-muted); }
.step-line        { flex: 1; height: 2px; background: var(--border-color); }
.step-line.done   { background: linear-gradient(90deg, rgba(16,185,129,.5), rgba(0,188,212,.5)); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }

.navbar-bizconnect {
    background: var(--bg-navbar) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    transition: all var(--transition-normal);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-bizconnect.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}
.navbar-brand-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}
.navbar-bizconnect .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}
.navbar-bizconnect .nav-link:hover,
.navbar-bizconnect .nav-link.active {
    color: var(--primary-500) !important;
    background: rgba(0,188,212,0.08);
}
.navbar-bizconnect .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition-fast);
}
.navbar-bizconnect .nav-link:hover::after,
.navbar-bizconnect .nav-link.active::after { width: 60%; }

/* Dropdown */
.navbar-bizconnect .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 200px;
    animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.navbar-bizconnect .dropdown-item {
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}
.navbar-bizconnect .dropdown-item:hover {
    color: var(--primary-600);
    background: rgba(0,188,212,0.08);
}

/* Search bar in navbar */
.navbar-search .form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 50px 0 0 50px;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}
.navbar-search .form-control:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(0,188,212,0.15);
    background: var(--bg-card);
}
.navbar-search .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.5rem 1rem;
}

/* Dark mode toggle */
.dark-mode-toggle {
    width: 36px; height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.85rem;
}
.dark-mode-toggle:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: rotate(15deg);
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: all var(--transition-normal);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition-fast);
    border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:active::after { background: rgba(0,0,0,0.1); }

.btn-primary {
    background: var(--gradient-brand);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,188,212,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    box-shadow: 0 6px 25px rgba(0,188,212,0.45);
    transform: translateY(-1px);
    color: white;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
    border: 2px solid var(--primary-500);
    color: var(--primary-600);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,188,212,0.3);
}

.btn-light-primary {
    background: rgba(0,188,212,0.1);
    color: var(--primary-600);
    border: none;
}
.btn-light-primary:hover {
    background: rgba(0,188,212,0.2);
    color: var(--primary-700);
}

.btn-accent {
    background: var(--accent-color);
    border: none;
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,229,255,0.4);
}
.btn-accent:hover {
    background: #00d0ee;
    color: var(--dark-bg);
    box-shadow: 0 6px 30px rgba(0,229,255,0.5);
    transform: translateY(-2px);
}

.btn-lg  { padding: 0.8rem 2rem;   font-size: 1rem;    }
.btn-sm  { padding: 0.4rem 1rem;   font-size: 0.8rem;  }
.btn-xl  { padding: 1rem 2.5rem;   font-size: 1.1rem;  }

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--bg-card);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}
.btn-back:hover {
    color: var(--primary-600);
    border-color: var(--primary-400);
    background: rgba(0,188,212,0.06);
    transform: translateX(-3px);
}
.btn-back i { font-size: 0.8rem; }

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.card-bizconnect {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
    overflow: visible;
    position: relative;
}

.card-img-wrapper {
    overflow: hidden;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    position: relative;
}
.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.card-bizconnect:hover .card-img-wrapper img { transform: scale(1.05); }

/* Company card */
.company-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}
.company-card:hover {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: inherit;
}
.company-logo {
    width: 60px; height: 60px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--bg-secondary);
    padding: 0.5rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

/* Stats card */
.stat-card {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,188,212,0.1), transparent);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTIONS
══════════════════════════════════════════════════════════ */
.hero-section {
    background: var(--gradient-hero);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0,188,212,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,229,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0,151,167,0.1) 0%, transparent 40%);
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,188,212,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,188,212,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    from { transform: translateY(0); }
    to   { transform: translateY(40px); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0,188,212,0.15);
    border: 1px solid rgba(0,188,212,0.3);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}
.hero-badge i { font-size: 0.75rem; }
.hero-title {
    color: white;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title span {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions { animation: fadeInUp 0.7s ease 0.3s both; }
.hero-float-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    color: white;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Page Hero (inner pages) */
.page-hero {
    background: var(--gradient-hero);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 50%, rgba(0,188,212,0.1) 0%, transparent 50%);
}
.page-hero h1 { color: white; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb-item.active { color: var(--accent-color); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-hero p { color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════════════ */
.section-py { padding: var(--section-py) 0; }
.section-bg-alt { background: var(--bg-secondary); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-500);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1rem; height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form-control,
.form-select {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus,
.form-select:focus {
    background: var(--bg-card);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(0,188,212,0.12);
    color: var(--text-primary);
    outline: none;
}
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.form-floating > label { color: var(--text-muted); }
.form-check-input:checked {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
}
.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(0,188,212,0.15);
    border-color: var(--primary-400);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.input-group-text {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   BADGES & TAGS
══════════════════════════════════════════════════════════ */
.badge-primary {
    background: rgba(0,188,212,0.15);
    color: var(--primary-600);
    border: 1px solid rgba(0,188,212,0.25);
    font-size: 0.75rem;
    padding: 0.3em 0.75em;
    border-radius: 50px;
    font-weight: 600;
}
[data-bs-theme="dark"] .badge-primary {
    background: rgba(0,188,212,0.2);
    color: var(--primary-300);
}
.badge-verified {
    background: rgba(16,185,129,0.15);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.25);
    font-size: 0.7rem;
    padding: 0.25em 0.65em;
    border-radius: 50px;
    font-weight: 700;
}
[data-bs-theme="dark"] .badge-verified { color: #34d399; }
.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}
.category-tag:hover,
.category-tag.active {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
}

/* ══════════════════════════════════════════════════════════
   RATING STARS
══════════════════════════════════════════════════════════ */
.stars { color: #f59e0b; font-size: 0.8rem; }
.rating-score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════ */
.page-link {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px !important;
    margin: 0 2px;
    padding: 0.5rem 0.85rem;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
}
.page-link:hover {
    background: rgba(0,188,212,0.1);
    border-color: var(--primary-400);
    color: var(--primary-600);
}
.page-item.active .page-link {
    background: var(--gradient-brand);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 10px rgba(0,188,212,0.4);
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR FILTERS
══════════════════════════════════════════════════════════ */
.filter-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    position: sticky;
    top: 80px;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.filter-range { accent-color: var(--primary-500); }

/* ══════════════════════════════════════════════════════════
   TABS
══════════════════════════════════════════════════════════ */
.nav-pills-biz .nav-link {
    color: var(--text-secondary);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}
.nav-pills-biz .nav-link.active,
.nav-pills-biz .nav-link:hover {
    background: var(--primary-500);
    color: white;
}
.nav-tabs-biz {
    border-bottom: 2px solid var(--border-color);
}
.nav-tabs-biz .nav-link {
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}
.nav-tabs-biz .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}
.nav-tabs-biz .nav-link.active,
.nav-tabs-biz .nav-link:hover { color: var(--primary-600); }
.nav-tabs-biz .nav-link.active::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════
   ALERTS & TOASTS
══════════════════════════════════════════════════════════ */
.alert-bizconnect {
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.alert-info-biz {
    background: rgba(0,188,212,0.08);
    border-color: rgba(0,188,212,0.25);
    color: var(--primary-700);
}
[data-bs-theme="dark"] .alert-info-biz { color: var(--primary-300); }

/* ══════════════════════════════════════════════════════════
   TABLES
══════════════════════════════════════════════════════════ */
.table-bizconnect {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 0.875rem;
}
.table-bizconnect th {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid var(--border-color);
}
.table-bizconnect td {
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.table-bizconnect tr:hover td { background: rgba(0,188,212,0.04); }

/* ══════════════════════════════════════════════════════════
   PRICING / PACKAGE CARDS
══════════════════════════════════════════════════════════ */
.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all var(--transition-slow);
}
.pricing-card.featured {
    border-color: var(--primary-500);
    background: linear-gradient(145deg, var(--bg-card), rgba(0,188,212,0.04));
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0,188,212,0.2);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.25rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.pricing-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.pricing-price sup {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
}
.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pricing-features li i {
    color: var(--primary-500);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.pricing-features li.disabled { opacity: 0.4; text-decoration: line-through; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer-bizconnect {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.footer-bizconnect::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-desc { font-size: 0.875rem; line-height: 1.7;}
.footer-title {
    color: white;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent-color); }
.footer-links a i { font-size: 0.7rem; }
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}
.footer-social a:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent-color); }

/* ══════════════════════════════════════════════════════════
   SEARCH
══════════════════════════════════════════════════════════ */
.search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.search-box .form-control {
    height: 56px;
    padding-left: 1.5rem;
    padding-right: 7rem;
    font-size: 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.search-box .form-control::placeholder { color: rgba(255,255,255,0.4); }
.search-box .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0,229,255,0.1);
    color: white;
}
.search-box .btn-search {
    position: absolute;
    right: 6px; top: 6px;
    height: calc(100% - 12px);
    padding: 0 1.5rem;
    border-radius: 12px;
    background: var(--gradient-brand);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.search-box .btn-search:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
}

/* Search result highlight */
.search-highlight {
    background: rgba(0,229,255,0.2);
    color: var(--accent-color);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════════════ */
.dashboard-sidebar {
    width: 260px;
    min-height: calc(100vh - 70px);
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 1.5rem 0;
}
.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
    text-decoration: none;
}
.dashboard-nav-item i { width: 18px; text-align: center; font-size: 0.9rem; }
.dashboard-nav-item:hover {
    background: rgba(0,188,212,0.06);
    color: var(--primary-600);
}
.dashboard-nav-item.active {
    background: rgba(0,188,212,0.1);
    color: var(--primary-600);
    border-left-color: var(--primary-500);
    font-weight: 600;
}
.dashboard-main { flex: 1; padding: 2rem; min-width: 0; }
.dashboard-section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}
.kpi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kpi-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.kpi-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.kpi-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.kpi-trend { font-size: 0.75rem; margin-top: 0.5rem; }
.kpi-trend.up { color: #10b981; }
.kpi-trend.down { color: #ef4444; }

/* ══════════════════════════════════════════════════════════
   BLOG / NEWS
══════════════════════════════════════════════════════════ */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition-slow);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,188,212,0.25);
}
.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-img-wrapper { overflow: hidden; }
.blog-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-500);
}
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 0.855rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-group-item{
    border:0;
    padding:.9rem 1rem;
}

.list-group-item:hover{
    background:#f8f9fa;
}

@media (max-width:991px){

    .sticky-top{
        position:static!important;
    }

}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}
.faq-item.open { border-color: var(--primary-400); }
.faq-question {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: background var(--transition-fast);
    user-select: none;
}
.faq-question:hover { background: rgba(0,188,212,0.04); }
.faq-question i {
    color: var(--primary-500);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    background: var(--bg-card);
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT / SERVICE DETAIL
══════════════════════════════════════════════════════════ */
.product-gallery {
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.product-gallery-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
}
.product-thumbnail.active { border-color: var(--primary-500); }
.product-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}
.product-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-600);
}
.product-price.negotiable { color: var(--text-primary); font-size: 1.4rem; }

/* ══════════════════════════════════════════════════════════
   AUTH PAGES
══════════════════════════════════════════════════════════ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.auth-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(0,188,212,0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(0,229,255,0.08) 0%, transparent 40%);
}
.auth-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    width: 100%;
    position: relative;
    z-index: 1;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}
.auth-divider span { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }

/* Password strength indicator */
.password-strength { height: 4px; border-radius: 4px; background: var(--border-color); overflow: hidden; }
.password-strength-bar { height: 100%; border-radius: 4px; transition: width 0.3s ease, background 0.3s ease; }

/* ══════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════ */
.page-404 {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-300), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

/* ══════════════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════════════ */
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}
.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}
.btn-close {
    filter: none;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}
[data-bs-theme="dark"] .btn-close { filter: invert(1); }
.btn-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   PROGRESS / LOADER
══════════════════════════════════════════════════════════ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-ring {
    width: 50px; height: 50px;
    border: 3px solid rgba(0,188,212,0.2);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════════════════ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    background: var(--gradient-brand);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0,188,212,0.4);
    z-index: 999;
}
.scroll-to-top.visible { opacity: 1; transform: translateY(0); }
.scroll-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,188,212,0.5); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,188,212,0.4); }
    50%      { box-shadow: 0 0 0 12px rgba(0,188,212,0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Gradient text utility */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   COOKIE CONSENT
══════════════════════════════════════════════════════════ */
.cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 9998;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}
.cookie-bar.show { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    :root { --section-py: 3.5rem; }
    .dashboard-sidebar {
        position: fixed;
        left: -260px;
        z-index: 1040;
        height: 100vh;
        top: 0;
        transition: left var(--transition-slow);
        box-shadow: var(--shadow-lg);
    }
    .dashboard-sidebar.open { left: 0; }
    .dashboard-main { padding: 1.25rem; }
    .pricing-card.featured { transform: scale(1); }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: auto; padding: 5rem 0 3rem; }
    .page-hero { padding: 3rem 0 2rem; }
    .auth-card { padding: 1.75rem 1.25rem; }
    .filter-sidebar { position: static; margin-bottom: 1.5rem; }
    .search-box .btn-search { padding: 0 1rem; }
}
@media (max-width: 575.98px) {
    h1,.h1 { font-size: 1.75rem; }
    .hero-title { font-size: 1.8rem; }
    .stat-number { font-size: 1.8rem; }
    .scroll-to-top { bottom: 1rem; right: 1rem; }
}

/* ── Utility: Visually hidden ─────────────────────────────── */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Divider with text ────────────────────────────────────── */
.divider-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 1.5rem 0;
}
.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ── Skeleton loaders ─────────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg,
        var(--border-color) 25%,
        var(--bg-secondary) 50%,
        var(--border-color) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}
@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* ── Custom tooltip ───────────────────────────────────────── */
.tooltip .tooltip-inner {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
}

/* ── Verified badge icon ──────────────────────────────────── */
.icon-verified {
    color: #10b981;
    font-size: 0.85rem;
}

/* ── Active breadcrumb ────────────────────────────────────── */
.breadcrumb-item a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.breadcrumb-item a:hover { color: var(--primary-500); }
.breadcrumb-item.active { color: var(--text-primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border-color); }

/* ── Contact info block ───────────────────────────────────── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    margin-bottom: 1rem;
    transition: border-color var(--transition-fast);
}
.contact-info-item:hover { border-color: var(--primary-400); }
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(0,188,212,0.1);
    color: var(--primary-500);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Notification dot ─────────────────────────────────────── */
.notif-dot {
    width: 8px; height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-glow 2s infinite;
}
