/* ==========================================================================
   ARKS IT Limited — Theme Stylesheet
   ========================================================================== */

:root {
  --arks-blue: #1c8adb;
  --arks-teal: #1fb4b0;
  --arks-green: #8dc63f;
  --arks-dark: #202b3c;
  --arks-gray: #5c6672;
  --arks-light: #f4f8fb;
  --arks-gradient: linear-gradient(135deg, var(--arks-blue) 0%, var(--arks-teal) 55%, var(--arks-green) 100%);
  --arks-gradient-soft: linear-gradient(135deg, rgba(28,138,219,0.08) 0%, rgba(141,198,63,0.08) 100%);
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(32, 43, 60, 0.06);
  --shadow-md: 0 10px 30px rgba(32, 43, 60, 0.10);
  --shadow-lg: 0 20px 50px rgba(32, 43, 60, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--arks-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: 'Poppins', sans-serif;
}

a { text-decoration: none; }

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

.bg-gradient-arks { background: var(--arks-gradient); }
.bg-soft { background: var(--arks-light); }

.btn-gradient {
  background: var(--arks-gradient);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-gradient:hover, .btn-gradient:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.05);
}

.btn-outline-arks {
  border: 2px solid var(--arks-blue);
  color: var(--arks-blue);
  font-weight: 600;
  background: transparent;
  transition: all .25s ease;
}
.btn-outline-arks:hover {
  background: var(--arks-blue);
  color: #fff;
  transform: translateY(-2px);
}

section { padding: 90px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--arks-gradient-soft);
  color: var(--arks-blue);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title { font-weight: 700; font-size: 2.2rem; }
.section-sub { color: var(--arks-gray); font-size: 1.05rem; }

/* ---------------- Navbar ---------------- */
#mainNav {
  background: rgba(255,255,255,0.98);
  transition: all .3s ease;
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(32,43,60,0.05);
}
#mainNav.scrolled { padding: 8px 0; box-shadow: var(--shadow-md); }

.brand-text { line-height: 1.05; display: inline-flex; flex-wrap: wrap; align-items: baseline; }
.brand-arks { font-weight: 700; font-size: 1.35rem; color: var(--arks-dark); }
.brand-it { font-weight: 700; font-size: 1.35rem; background: var(--arks-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-text small { display: block; width: 100%; font-size: .55rem; letter-spacing: 3px; color: var(--arks-gray); font-weight: 600; }
.brand-text-light .brand-arks { color: #fff; }
.brand-text-light small { color: rgba(255,255,255,0.6); }

.navbar-nav .nav-link {
  color: var(--arks-dark);
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--arks-blue); }
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--arks-gradient);
  border-radius: 2px;
}
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: 12px; padding: 10px; }
.dropdown-item { border-radius: 8px; padding: 8px 14px; font-size: .92rem; }
.dropdown-item:hover { background: var(--arks-gradient-soft); color: var(--arks-blue); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 170px 0 110px;
  background: radial-gradient(circle at 80% 20%, rgba(141,198,63,0.10), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(28,138,219,0.12), transparent 45%),
              #f8fbfd;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32,43,60,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,43,60,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-weight: 800; font-size: 3rem; line-height: 1.15; }
.hero .lead { color: var(--arks-gray); font-size: 1.15rem; }
.hero-stats { border-top: 1px solid rgba(32,43,60,0.08); margin-top: 40px; padding-top: 24px; }
.hero-stats .stat-num { font-weight: 800; font-size: 1.9rem; color: var(--arks-dark); }
.hero-stats .stat-num span.suffix { color: var(--arks-blue); }
.hero-stats .stat-label { color: var(--arks-gray); font-size: .88rem; }

.hero-visual { position: relative; }
.hero-card-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .85rem;
  animation: floatY 4s ease-in-out infinite;
}
.hero-card-float .icon-box {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--arks-gradient); color: #fff; font-size: 1.1rem;
}
.float-1 { top: 8%; left: -4%; animation-delay: 0s; }
.float-2 { bottom: 10%; right: -6%; animation-delay: 1.2s; }
.float-3 { bottom: -6%; left: 18%; animation-delay: 2s; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

.hero-blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--arks-gradient);
  opacity: .12;
  filter: blur(10px);
  top: -60px; right: -100px;
  z-index: 0;
}

/* ---------------- Marquee / clients ---------------- */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track span { font-weight: 700; font-size: 1.4rem; color: #c3ccd6; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------------- Service Cards ---------------- */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid rgba(32,43,60,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--arks-gradient-soft);
  color: var(--arks-blue);
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.service-card:hover .service-icon {
  background: var(--arks-gradient);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.service-card h5 { font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--arks-gray); font-size: .93rem; margin-bottom: 0; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: .85rem; color: var(--arks-blue);
  opacity: 0; transform: translateX(-6px); transition: all .3s ease;
}
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* Detailed service block (services page) */
.service-detail {
  border-radius: var(--radius);
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(32,43,60,0.06);
  scroll-margin-top: 110px;
}
.service-detail .service-icon { margin-bottom: 24px; }
.service-detail ul.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.service-detail ul.check-list li { padding: 6px 0 6px 30px; position: relative; color: var(--arks-gray); }
.service-detail ul.check-list li::before {
  content: "\F633";
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 6px;
  color: var(--arks-green);
  font-weight: 700;
}

/* ---------------- Process steps ---------------- */
.process-step { position: relative; text-align: center; padding: 10px; }
.process-num {
  width: 70px; height: 70px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--arks-gradient);
  color: #fff; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.process-step h6 { font-weight: 700; }
.process-step p { color: var(--arks-gray); font-size: .88rem; }
.process-line { position: absolute; top: 35px; left: 60%; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, #cfd8e3 0 8px, transparent 8px 16px); z-index: -1; }

/* ---------------- Counters / Why us ---------------- */
.counter-box { text-align: center; }
.counter-box .num { font-weight: 800; font-size: 2.4rem; color: var(--arks-dark); }
.counter-box .num .plus { color: var(--arks-blue); }
.counter-box .label { color: var(--arks-gray); font-size: .9rem; }

.feature-item { display: flex; gap: 16px; margin-bottom: 26px; }
.feature-item .icon-box {
  min-width: 52px; height: 52px; border-radius: 12px;
  background: var(--arks-gradient-soft); color: var(--arks-blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.feature-item h6 { font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: var(--arks-gray); font-size: .9rem; margin: 0; }

/* ---------------- Portfolio ---------------- */
.portfolio-filter .btn {
  border-radius: 50px; font-weight: 600; font-size: .88rem;
  padding: 8px 20px; margin: 4px; color: var(--arks-dark); border: 1px solid rgba(32,43,60,0.12);
  background: #fff;
}
.portfolio-filter .btn.active, .portfolio-filter .btn:hover { background: var(--arks-gradient); color: #fff; border-color: transparent; }

.portfolio-card { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s ease; display: block; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,45,66,0.92), rgba(28,45,66,0.15) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  opacity: 0; transition: opacity .35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay span { color: var(--arks-green); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.portfolio-overlay h6 { color: #fff; font-weight: 700; margin: 4px 0 0; }

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(32,43,60,0.06); height: 100%;
}
.testimonial-card .bi-quote { font-size: 1.8rem; color: var(--arks-green); }
.testimonial-card p.quote { color: var(--arks-gray); font-style: italic; margin: 16px 0 22px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--arks-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.rating i { color: #ffb400; font-size: .85rem; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: var(--arks-gradient);
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-banner h2 { font-weight: 800; }
.cta-banner::after {
  content: "";
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.08); top: -120px; right: -80px;
}
.cta-banner .btn-light { font-weight: 700; }

/* ---------------- Pricing (optional use) ---------------- */
.pricing-card { border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); border: 1px solid rgba(32,43,60,0.06); padding: 36px; text-align: center; height: 100%; }
.pricing-card.featured { background: var(--arks-gradient); color: #fff; transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pricing-card.featured .text-muted, .pricing-card.featured .section-sub { color: rgba(255,255,255,0.85) !important; }

/* ---------------- Contact ---------------- */
.contact-info-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(32,43,60,0.06);
  display: flex; gap: 18px; align-items: flex-start; height: 100%;
}
.contact-info-card .icon-box {
  width: 52px; height: 52px; border-radius: 12px; min-width: 52px;
  background: var(--arks-gradient-soft); color: var(--arks-blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-md); }
.form-control, .form-select {
  border-radius: 10px; padding: 12px 16px; border: 1px solid rgba(32,43,60,0.14); font-size: .95rem;
}
.form-control:focus, .form-select:focus { border-color: var(--arks-blue); box-shadow: 0 0 0 3px rgba(28,138,219,0.12); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ---------------- Page header (inner pages) ---------------- */
.page-header {
  padding: 160px 0 70px;
  background: radial-gradient(circle at 85% 20%, rgba(141,198,63,0.12), transparent 45%),
              radial-gradient(circle at 5% 100%, rgba(28,138,219,0.12), transparent 45%),
              #f8fbfd;
  text-align: center;
}
.page-header h1 { font-weight: 800; font-size: 2.6rem; }
.breadcrumb-arks { justify-content: center; }
.breadcrumb-arks a { color: var(--arks-gray); }
.breadcrumb-arks .active { color: var(--arks-blue); font-weight: 600; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--arks-dark); color: rgba(255,255,255,0.75); margin-top: 0; }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: .92rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--arks-green); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--arks-green); margin-top: 3px; }
.text-light-50 { color: rgba(255,255,255,0.55); font-size: .92rem; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-right: 8px; transition: all .25s ease;
}
.social-icons a:hover { background: var(--arks-gradient); border-color: transparent; transform: translateY(-3px); }
.newsletter-form .form-control { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.footer-bottom { background: rgba(0,0,0,0.2); font-size: .85rem; }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease; box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff; font-size: 1.7rem;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), var(--shadow-md); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-md); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; left: 18px; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* ---------------- Blog ---------------- */
.blog-filter .btn {
  border-radius: 50px; font-weight: 600; font-size: .88rem;
  padding: 8px 20px; margin: 4px; color: var(--arks-dark); border: 1px solid rgba(32,43,60,0.12);
  background: #fff;
}
.blog-filter .btn.active, .blog-filter .btn:hover { background: var(--arks-gradient); color: #fff; border-color: transparent; }

.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(32,43,60,0.06);
  transition: transform .3s ease, box-shadow .3s ease; height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-category-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--arks-gradient); color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 5px 14px; border-radius: 50px;
}
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { color: var(--arks-gray); font-size: .82rem; display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.blog-meta i { color: var(--arks-blue); }
.blog-card-body h5 { font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { color: var(--arks-gray); font-size: .93rem; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--arks-blue); margin-top: 10px; }
.blog-read-more:hover { color: var(--arks-teal); }

.blog-featured {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(32,43,60,0.06);
  display: flex; flex-wrap: wrap;
}
.blog-featured-img { flex: 1 1 46%; min-height: 320px; background-size: cover; background-position: center; }
.blog-featured-body { flex: 1 1 50%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }

/* Article (single post) */
.article-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 40px; }
.article-hero-img img { width: 100%; max-height: 460px; object-fit: cover; }
.article-body { font-size: 1.08rem; line-height: 1.85; color: #3a4250; }
.article-body p { margin-bottom: 1.4em; }
.article-body h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.6rem; margin: 1.8em 0 .7em; color: var(--arks-dark); }
.article-body h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; margin: 1.6em 0 .6em; color: var(--arks-dark); }
.article-body ul, .article-body ol { margin-bottom: 1.4em; padding-left: 1.4em; }
.article-body li { margin-bottom: .5em; }
.article-body blockquote {
  border-left: 4px solid var(--arks-blue); background: var(--arks-light);
  padding: 20px 26px; margin: 2em 0; border-radius: 0 12px 12px 0;
  font-style: italic; font-size: 1.15rem; color: var(--arks-dark);
}
.article-body strong { color: var(--arks-dark); }

.author-card {
  background: var(--arks-light); border-radius: var(--radius); padding: 26px;
  display: flex; align-items: center; gap: 18px; margin: 3em 0 2em;
}
.author-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: var(--arks-gradient); color: #fff; font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.share-row { display: flex; align-items: center; gap: 12px; margin: 2em 0; }
.share-row a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(32,43,60,0.12);
  display: flex; align-items: center; justify-content: center; color: var(--arks-dark);
  transition: all .25s ease;
}
.share-row a:hover { background: var(--arks-gradient); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* ---------------- Cookie Consent ---------------- */
#cookieConsentBanner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080;
  background: #fff; border-top: 1px solid rgba(32,43,60,0.1);
  box-shadow: 0 -8px 30px rgba(32,43,60,0.12);
  padding: 22px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookieConsentBanner.show { transform: translateY(0); }
#cookieConsentBanner .cookie-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--arks-gradient-soft); color: var(--arks-blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
#cookieConsentBanner p { color: var(--arks-gray); font-size: .92rem; margin-bottom: 0; }
#cookieConsentBanner a { color: var(--arks-blue); text-decoration: underline; }
#cookieConsentBanner .btn { white-space: nowrap; }

.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(32,43,60,0.08);
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-row h6 { font-weight: 700; margin-bottom: 4px; }
.cookie-toggle-row p { color: var(--arks-gray); font-size: .88rem; margin-bottom: 0; }
.cookie-toggle-row .form-check-input { width: 3em; height: 1.6em; cursor: pointer; flex-shrink: 0; }
.cookie-toggle-row .form-check-input:checked { background-color: var(--arks-blue); border-color: var(--arks-blue); }
.cookie-toggle-row .form-check-input:disabled { opacity: .65; cursor: not-allowed; }

.cookie-table { width: 100%; font-size: .9rem; }
.cookie-table th { background: var(--arks-light); font-weight: 700; padding: 10px 14px; text-align: left; }
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid rgba(32,43,60,0.06); color: var(--arks-gray); vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  #cookieConsentBanner .d-flex.align-items-center.gap-3 { flex-wrap: wrap; }
  #cookieConsentBanner .cookie-actions { width: 100%; }
  #cookieConsentBanner .cookie-actions .btn { flex: 1; }
}

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------------- Preloader ---------------- */
#preloader {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 54px; height: 54px; border-radius: 50%;
  border: 4px solid rgba(28,138,219,0.15);
  border-top-color: var(--arks-blue);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
