/* V5 Global Theme - Light/White Aesthetic */
/* ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Root */
:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #334155;
  --ink-muted: #64748b;
  --ink-light: #94a3b8;
  --border: #e2e8f0;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-light: #dbeafe;
  --blue-soft: #eff6ff;
  --teal: #0d9488;
  --amber: #d97706;
  --emerald: #059669;
  --violet: #7c3aed;
  --rose: #e11d48;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --ease: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme V5 Scoped Variables */
body.theme-v5 {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #334155;
  --ink-muted: #64748b;
  --ink-light: #94a3b8;
  --border: #e2e8f0;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-light: #dbeafe;
  --blue-soft: #eff6ff;
  --teal: #0d9488;
  --amber: #d97706;
  --emerald: #059669;
  --violet: #7c3aed;
  --rose: #e11d48;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --ease: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles - V5 Scoped */
body.theme-v5 {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

body.theme-v5 * {
  box-sizing: border-box;
}

body.theme-v5 h1, body.theme-v5 h2, body.theme-v5 h3, body.theme-v5 h4, body.theme-v5 h5, body.theme-v5 h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

body.theme-v5 p {
  margin: 0;
  color: var(--ink-3);
}

body.theme-v5 a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--ease);
}

body.theme-v5 a:hover {
  color: var(--blue-hover);
}

/* Container */
body.theme-v5 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Base Styles */
body.theme-v5 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  gap: 8px;
}

body.theme-v5 .btn:hover {
  transform: translateY(-2px);
}

/* ========================================== */
/* NAVIGATION - V5 Style */
/* ========================================== */

body.theme-v5 .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--ease);
}

body.theme-v5 .site-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

body.theme-v5 .nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.theme-v5 .nav-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
}

body.theme-v5 .nav-logo {
  height: 34px;
  width: auto;
}

body.theme-v5 .nav-brand-text {
  color: var(--ink);
}

body.theme-v5 .nav-brand-accent {
  color: var(--ink);
  font-weight: 800;
}

body.theme-v5 .nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.theme-v5 .nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: all var(--ease);
}

body.theme-v5 .nav-links a:hover {
  color: var(--ink);
  background: var(--bg-muted);
}

body.theme-v5 .nav-links a.active {
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 600;
}

body.theme-v5 .nav-cta {
  padding: 0.5rem 1.15rem;
  background: var(--ink);
  color: #fff !important;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
}

body.theme-v5 .nav-cta:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

body.theme-v5 .nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  padding: 12px 9px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}

body.theme-v5 .nav-hamburger:active {
  background: var(--bg-muted);
}

body.theme-v5 .nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 9px;
  right: 9px;
  width: calc(100% - 18px);
  transition: all var(--ease);
  border-radius: 1px;
}

body.theme-v5 .nav-hamburger span:nth-child(1) { top: 14px; }
body.theme-v5 .nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
body.theme-v5 .nav-hamburger span:nth-child(3) { bottom: 14px; }

body.theme-v5 .nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.theme-v5 .nav-hamburger.active span:nth-child(2) { opacity: 0; }
body.theme-v5 .nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Spacing for fixed nav */
body.theme-v5 main {
  padding-top: 60px;
}

/* ========================================== */
/* CLASSIC NAVIGATION - Emoji icon bar */
/* ========================================== */

body.theme-v5 .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

body.theme-v5 .navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

body.theme-v5 .navbar .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

body.theme-v5 .navbar .nav-brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

body.theme-v5 .navbar .logo-image {
  height: 34px;
  width: auto;
}

body.theme-v5 .navbar .brand-dev {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

body.theme-v5 .navbar .brand-domain {
  color: #60a5fa;
  font-weight: 800;
  font-size: 1.1rem;
}

body.theme-v5 .navbar .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

body.theme-v5 .navbar .nav-link,
body.theme-v5 .navbar .nav-link:link,
body.theme-v5 .navbar .nav-link:visited {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  background: none;
  box-shadow: none;
  transform: none;
  align-items: center;
  gap: 0.35rem;
}

body.theme-v5 .navbar .nav-link::before {
  display: none !important;
}

body.theme-v5 .navbar .nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: none;
}

body.theme-v5 .navbar .nav-link.active,
body.theme-v5 .navbar .nav-link.active:link,
body.theme-v5 .navbar .nav-link.active:visited {
  color: #fff;
  background: rgba(37,99,235,0.3);
  font-weight: 600;
  border-bottom: 2px solid #60a5fa;
  padding-bottom: calc(0.45rem - 2px);
  box-shadow: none;
  transform: none;
}

body.theme-v5 .navbar .nav-icon {
  font-size: 1rem;
}

body.theme-v5 .navbar .nav-text {
  display: inline;
}

body.theme-v5 .navbar .btn-book {
  padding: 0.5rem 1.15rem;
  background: #2563eb;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

body.theme-v5 .navbar .btn-book:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 15px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}

body.theme-v5 .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  padding: 12px 9px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}

body.theme-v5 .nav-toggle:active {
  background: rgba(255,255,255,0.1);
}

body.theme-v5 .nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 9px;
  right: 9px;
  width: calc(100% - 18px);
  transition: all 0.3s ease;
  border-radius: 1px;
}

body.theme-v5 .nav-toggle span:nth-child(1) { top: 12px; }
body.theme-v5 .nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
body.theme-v5 .nav-toggle span:nth-child(3) { bottom: 12px; }

body.theme-v5 .nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.theme-v5 .nav-toggle.active span:nth-child(2) { opacity: 0; }
body.theme-v5 .nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ========================================== */
/* HERO SECTIONS */
/* ========================================== */

body.theme-v5 .services-hero {
  background: linear-gradient(135deg, var(--blue-soft) 0%, #eef4ff 40%, var(--bg) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

body.theme-v5 .services-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

body.theme-v5 .services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

body.theme-v5 .services-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.theme-v5 .services-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

body.theme-v5 .services-hero-description {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 520px;
}

body.theme-v5 .services-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

body.theme-v5 .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--ease);
  cursor: pointer;
}

body.theme-v5 .btn-hero-outline:hover {
  background-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

body.theme-v5 .btn-hero-filled {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: var(--blue);
  color: #ffffff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--ease);
  cursor: pointer;
}

body.theme-v5 .btn-hero-filled:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

body.theme-v5 .services-hero-graphics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

body.theme-v5 .services-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

body.theme-v5 .services-glass-card.main-services-card {
  grid-column: 1 / -1;
}

body.theme-v5 .services-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.15);
}

body.theme-v5 .services-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 2rem;
  background: var(--blue-soft);
}/* ========================================== */
/* ABOUT PAGE */
/* ========================================== */

body.theme-v5 .approach-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .approach-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: var(--ink);
}

body.theme-v5 .approach-content {
  max-width: 800px;
  margin: 0 auto;
}

body.theme-v5 .approach-content p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 20px;
}

body.theme-v5 .why-choose-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

body.theme-v5 .why-choose-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .why-choose-tagline {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 48px;
  line-height: 1.6;
}

body.theme-v5 .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

body.theme-v5 .why-choose-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}

body.theme-v5 .why-choose-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

body.theme-v5 .why-choose-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 28px;
}

body.theme-v5 .icon-blue {
  background-color: var(--blue-soft);
  color: var(--blue);
}

body.theme-v5 .icon-orange {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--amber);
}

body.theme-v5 .icon-blue-link {
  background-color: var(--blue-soft);
  color: var(--blue);
}

body.theme-v5 .icon-gradient {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #ffffff;
}

body.theme-v5 .transform-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg) 100%);
}

body.theme-v5 .transform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.theme-v5 .transform-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}

body.theme-v5 .transform-text {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 32px;
}

body.theme-v5 .transform-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

body.theme-v5 .btn-transform-outline {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

body.theme-v5 .btn-transform-outline:hover {
  background-color: var(--blue-soft);
}

body.theme-v5 .btn-transform-filled {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

body.theme-v5 .btn-transform-filled:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}

/* ========================================== */
/* SERVICES PAGE */
/* ========================================== */

body.theme-v5 .digital-solutions-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .expertise-badge {
  display: inline-block;
  background-color: var(--blue-soft);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

body.theme-v5 .solutions-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .solutions-section-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 48px;
  line-height: 1.6;
}

body.theme-v5 .solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

body.theme-v5 .solution-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

body.theme-v5 .solution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

body.theme-v5 .solution-card-header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.theme-v5 .solution-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.theme-v5 .solution-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 32px;
}

body.theme-v5 .solution-icon {
  width: 100%;
  height: 100%;
}

body.theme-v5 .solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

body.theme-v5 .solution-tag {
  display: inline-block;
  background-color: var(--bg-muted);
  color: var(--ink-3);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 500;
}

/* Gradient Classes for Solution Cards */
body.theme-v5 .gradient-teal-pink {
  background: linear-gradient(135deg, #0d9488 0%, #ec4899 100%);
}

body.theme-v5 .gradient-orange-pink {
  background: linear-gradient(135deg, #d97706 0%, #f43f5e 100%);
}

body.theme-v5 .gradient-pink-red {
  background: linear-gradient(135deg, #ec4899 0%, #e11d48 100%);
}

body.theme-v5 .gradient-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

body.theme-v5 .gradient-blue {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

body.theme-v5 .gradient-green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

body.theme-v5 .gradient-pink {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

/* Icon Color Classes */
body.theme-v5 .icon-teal {
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--teal);
}

body.theme-v5 .icon-orange {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--amber);
}

body.theme-v5 .icon-purple {
  background-color: rgba(124, 58, 237, 0.1);
  color: var(--violet);
}

body.theme-v5 .icon-pink {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

body.theme-v5 .icon-green {
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--emerald);
}

body.theme-v5 .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

body.theme-v5 .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.theme-v5 .benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

body.theme-v5 .benefit-icon {
  width: 100%;
  height: 100%;
  font-size: 24px;
}

body.theme-v5 .why-choose-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 32px;
}

body.theme-v5 .transform-cta-section {
  padding: 60px 0;
  background-color: var(--bg-soft);
  text-align: center;
}

body.theme-v5 .transform-cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .transform-cta-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 32px;
  line-height: 1.6;
}

body.theme-v5 .btn-transform-cta {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  display: inline-block;
}

body.theme-v5 .btn-transform-cta:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}/* ========================================== */
/* PORTFOLIO PAGE */
/* ========================================== */

body.theme-v5 .portfolio-categories-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .portfolio-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .portfolio-section-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 48px;
  line-height: 1.6;
}

body.theme-v5 .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

body.theme-v5 .category-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

body.theme-v5 .category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

body.theme-v5 .category-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(37, 99, 235, 0.05) 100%);
}

body.theme-v5 .category-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.theme-v5 .category-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
}

body.theme-v5 .category-icon {
  width: 100%;
  height: 100%;
}

body.theme-v5 .category-projects {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 4px;
}

body.theme-v5 .category-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.theme-v5 .tech-tag {
  display: inline-block;
  background-color: var(--bg-muted);
  color: var(--ink-3);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 500;
}

body.theme-v5 .btn-category {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
  margin-top: 12px;
  align-self: flex-start;
}

body.theme-v5 .btn-category:hover {
  background-color: var(--blue-soft);
}

body.theme-v5 .featured-projects-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

body.theme-v5 .featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

body.theme-v5 .featured-project-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

body.theme-v5 .featured-project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

body.theme-v5 .project-card-header {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, rgba(37, 99, 235, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.theme-v5 .project-icon {
  font-size: 48px;
  color: var(--blue);
}

body.theme-v5 .project-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.theme-v5 .project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

body.theme-v5 .btn-project {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  margin-top: 12px;
  align-self: flex-start;
}

body.theme-v5 .btn-project:hover {
  background-color: var(--blue-hover);
}

body.theme-v5 .github-portfolio-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .github-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .github-section-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 48px;
  line-height: 1.6;
}

body.theme-v5 .github-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

body.theme-v5 .github-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}

body.theme-v5 .github-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

body.theme-v5 .github-icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--ink);
}

body.theme-v5 .portfolio-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg) 100%);
  text-align: center;
}

body.theme-v5 .portfolio-cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

body.theme-v5 .portfolio-cta-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 32px;
  line-height: 1.6;
}

body.theme-v5 .portfolio-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

body.theme-v5 .btn-cta-outline {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

body.theme-v5 .btn-cta-outline:hover {
  background-color: var(--blue-soft);
}

body.theme-v5 .btn-cta-filled {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

body.theme-v5 .btn-cta-filled:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}/* ========================================== */
/* CONTACT PAGE */
/* ========================================== */

body.theme-v5 .contact-options-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

body.theme-v5 .contact-option-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}

body.theme-v5 .contact-option-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

body.theme-v5 .contact-option-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 32px;
  margin: 0 auto;
}

body.theme-v5 .whatsapp-icon {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

body.theme-v5 .call-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

body.theme-v5 .email-icon {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

body.theme-v5 .btn-whatsapp {
  background-color: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
  width: 100%;
}

body.theme-v5 .btn-whatsapp:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

body.theme-v5 .btn-call {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  width: 100%;
}

body.theme-v5 .btn-call:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}

body.theme-v5 .btn-email {
  background-color: var(--violet);
  color: #ffffff;
  border-color: var(--violet);
  width: 100%;
}

body.theme-v5 .btn-email:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
}

body.theme-v5 .contact-form-section {
  padding: 60px 0;
  background-color: var(--bg-soft);
}

body.theme-v5 .contact-form-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

body.theme-v5 .form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: space-between;
}

body.theme-v5 .progress-step {
  flex: 1;
  height: 4px;
  background-color: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

body.theme-v5 .progress-step.active {
  background-color: var(--blue);
}

body.theme-v5 .step-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

body.theme-v5 .step-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

body.theme-v5 .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.theme-v5 .form-section-header {
  margin-bottom: 16px;
}

body.theme-v5 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.theme-v5 .form-row.full {
  grid-template-columns: 1fr;
}

body.theme-v5 .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.theme-v5 .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

body.theme-v5 .form-control {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background-color: var(--bg);
  transition: all var(--ease);
}

body.theme-v5 .form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

body.theme-v5 .form-control::placeholder {
  color: var(--ink-light);
}

body.theme-v5 .form-control textarea {
  resize: vertical;
  min-height: 120px;
}

body.theme-v5 .form-control select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

body.theme-v5 .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

body.theme-v5 .btn-form-submit {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  flex-grow: 1;
}

body.theme-v5 .btn-form-submit:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}

body.theme-v5 .alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid transparent;
  margin-bottom: 24px;
  font-size: 14px;
}

body.theme-v5 .alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border-left-color: #10b981;
  color: #047857;
}

body.theme-v5 .alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-left-color: #ef4444;
  color: #991b1b;
}

body.theme-v5 .visit-office-section {
  padding: 80px 0;
  background-color: var(--bg);
}

body.theme-v5 .office-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

body.theme-v5 .office-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.theme-v5 .office-map {
  height: 300px;
  background-color: var(--border);
}

body.theme-v5 .office-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.theme-v5 .office-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

body.theme-v5 .office-info-item strong {
  color: var(--ink);
  min-width: 80px;
}

body.theme-v5 .office-info-item p {
  color: var(--ink-3);
  margin: 0;
}/* ========================================== */
/* FOOTER */
/* ========================================== */

body.theme-v5 .footer {
  background-color: var(--ink);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 80px;
}

/* Remove footer margin when page ends with dark CTA */
body.theme-v5:has(.v4-cta) .footer {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.theme-v5 .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-v5 .footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.theme-v5 .footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}

body.theme-v5 .footer-section a,
body.theme-v5 .footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--ease);
}

body.theme-v5 .footer-section a:hover {
  color: #ffffff;
}

body.theme-v5 .footer-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.theme-v5 .btn-footer-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  padding: 10px 16px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

body.theme-v5 .btn-footer-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

body.theme-v5 .btn-footer-logout {
  background-color: var(--rose);
  color: #ffffff;
  border-color: var(--rose);
  padding: 10px 16px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

body.theme-v5 .btn-footer-logout:hover {
  background-color: #be185d;
  border-color: #be185d;
}

body.theme-v5 .footer-login-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

body.theme-v5 .footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

body.theme-v5 .footer-seo-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

body.theme-v5 .footer-seo-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: color var(--ease);
}

body.theme-v5 .footer-seo-links a:hover {
  color: #ffffff;
}

/* ========================================== */
/* CONSULTATION MODAL */
/* ========================================== */

body.theme-v5 .consultation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

body.theme-v5 .consultation-modal.active {
  display: flex;
}

body.theme-v5 .consultation-modal-content {
  background-color: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

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

body.theme-v5 .consultation-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

body.theme-v5 .consultation-modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

body.theme-v5 .consultation-subtitle {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 4px;
}

body.theme-v5 .consultation-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease);
}

body.theme-v5 .consultation-modal-close:hover {
  color: var(--ink);
}

body.theme-v5 .consultation-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.theme-v5 .consultation-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.theme-v5 .consultation-form-row.full {
  grid-template-columns: 1fr;
}

body.theme-v5 .consultation-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.theme-v5 .consultation-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

body.theme-v5 .consultation-input,
body.theme-v5 .consultation-select,
body.theme-v5 .consultation-textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background-color: var(--bg);
  transition: all var(--ease);
}

body.theme-v5 .consultation-input:focus,
body.theme-v5 .consultation-select:focus,
body.theme-v5 .consultation-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

body.theme-v5 .consultation-input::placeholder {
  color: var(--ink-light);
}

body.theme-v5 .consultation-textarea {
  resize: vertical;
  min-height: 100px;
}

body.theme-v5 .consultation-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

body.theme-v5 .consultation-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

body.theme-v5 .btn-consultation-cancel {
  background-color: transparent;
  color: var(--ink-3);
  border-color: var(--border);
  flex: 1;
}

body.theme-v5 .btn-consultation-cancel:hover {
  background-color: var(--bg-muted);
}

body.theme-v5 .btn-consultation-submit {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  flex: 1;
}

body.theme-v5 .btn-consultation-submit:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}

/* ========================================== */
/* SHARED HOMEPAGE-STYLE COMPONENTS */
/* Buttons, labels, CTA that match the homepage */
/* ========================================== */

/* V4-style buttons (matching homepage) */
body.theme-v5 .v4-btn {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  border: none;
}

body.theme-v5 .v4-btn svg {
  width: 15px;
  height: 15px;
}

body.theme-v5 .v4-btn-dark {
  background: var(--ink);
  color: white;
}

body.theme-v5 .v4-btn-dark:hover {
  background: var(--ink-2);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

body.theme-v5 .v4-btn-soft {
  background: var(--bg-muted);
  color: var(--ink-2);
}

body.theme-v5 .v4-btn-soft:hover {
  background: var(--border);
  color: var(--ink);
}

/* White button for dark backgrounds */
body.theme-v5 .v4-btn-white {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--ink);
}

body.theme-v5 .v4-btn-white:hover {
  background: var(--bg-muted);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

body.theme-v5 .v4-btn-white svg {
  width: 15px;
  height: 15px;
}

/* Outline white button for dark backgrounds */
body.theme-v5 .v4-btn-outline-w {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

body.theme-v5 .v4-btn-outline-w:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

/* Section label badge (matching homepage) */
body.theme-v5 .v4-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

body.theme-v5 .v4-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* White variant for dark backgrounds */
body.theme-v5 .v4-label[style*="color: rgba(255"] {
  /* Let inline style override color */
}

body.theme-v5 .v4-label[style*="color: rgba(255"]::before {
  background: rgba(255,255,255,0.5);
}

/* Section heading block */
body.theme-v5 .v4-sec-head {
  margin-bottom: 3rem;
}

body.theme-v5 .v4-sec-head.center {
  text-align: center;
}

body.theme-v5 .v4-sec-head.center .v4-sec-sub {
  margin-left: auto;
  margin-right: auto;
}

body.theme-v5 .v4-sec-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

body.theme-v5 .v4-sec-sub {
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Dark CTA section (matching homepage bottom CTA) */
body.theme-v5 .v4-cta {
  padding: 5.5rem 2rem;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.theme-v5 .v4-cta .v4-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

body.theme-v5 .v4-cta .container {
  position: relative;
  z-index: 1;
}

body.theme-v5 .v4-cta h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

body.theme-v5 .v4-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

body.theme-v5 .v4-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Fade-in animation for inner pages */
body.theme-v5 .v4-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.theme-v5 .v4-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inner page section wrapper */
body.theme-v5 .v4-section {
  padding: 5.5rem 2rem;
}

body.theme-v5 .v4-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================== */
/* UTILITY ELEMENTS */
/* ========================================== */

body.theme-v5 .chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

body.theme-v5 .chat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--ease);
}

body.theme-v5 .chat-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(37, 99, 235, 0.3);
}

body.theme-v5 .chat-text {
  background-color: var(--bg);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

body.theme-v5 .chat-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background-color: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

body.theme-v5 .scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--blue);
  color: #ffffff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--ease);
  z-index: 40;
}

body.theme-v5 .scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

body.theme-v5 .scroll-top.show {
  display: flex;
}/* ========================================== */
/* LOGIN PAGE */
/* ========================================== */

body.theme-v5 .login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg) 100%);
  padding: 20px;
}

body.theme-v5 .login-container {
  width: 100%;
  max-width: 420px;
}

body.theme-v5 .login-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

body.theme-v5 .login-header {
  text-align: center;
  margin-bottom: 32px;
}

body.theme-v5 .login-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

body.theme-v5 .login-header p {
  font-size: 14px;
  color: var(--ink-3);
}

body.theme-v5 .login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.theme-v5 .login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.theme-v5 .login-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

body.theme-v5 .login-form .form-control {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  background-color: var(--bg);
}

body.theme-v5 .login-form .form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

body.theme-v5 .btn-login {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  padding: 12px 24px;
  width: 100%;
  margin-top: 8px;
}

body.theme-v5 .btn-login:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
}

body.theme-v5 .login-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-3);
}

body.theme-v5 .login-footer a {
  color: var(--blue);
  font-weight: 600;
}

body.theme-v5 .login-footer a:hover {
  color: var(--blue-hover);
}

/* ========================================== */
/* RESPONSIVE DESIGN */
/* ========================================== */

/* Tablet (768px and below) */
@media (max-width: 1024px) {
  body.theme-v5 .services-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.theme-v5 .services-hero-title {
    font-size: 36px;
  }

  body.theme-v5 .transform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.theme-v5 .office-card {
    grid-template-columns: 1fr;
  }

  body.theme-v5 .office-map {
    height: 250px;
  }

  body.theme-v5 .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.theme-v5 .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.theme-v5 .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.theme-v5 .featured-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.theme-v5 .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  body.theme-v5 .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* Form rows: 2-col still okay at 1024px but add gap */
  body.theme-v5 .form-row {
    gap: 12px;
  }

  body.theme-v5 .contact-form-card {
    padding: 36px;
  }

  /* Collapse nav to hamburger at tablet (covers iPad) */
  body.theme-v5 .nav-wrap {
    padding: 0.5rem 1rem;
  }

  body.theme-v5 .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }

  body.theme-v5 .nav-links.active {
    display: flex;
  }

  body.theme-v5 .nav-links a {
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    min-height: 44px;
  }

  body.theme-v5 .nav-hamburger {
    display: block;
  }

  body.theme-v5 .nav-cta {
    display: none;
  }

  /* Classic nav responsive */
  body.theme-v5 .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }

  body.theme-v5 .navbar .nav-menu.active {
    display: flex;
  }

  body.theme-v5 .navbar .nav-link {
    padding: 14px 16px;
    width: 100%;
    min-height: 44px;
    color: rgba(255,255,255,0.7) !important;
    background: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  body.theme-v5 .navbar .nav-link.active {
    color: #fff !important;
    background: rgba(37,99,235,0.2) !important;
  }

  body.theme-v5 .navbar .nav-link::before {
    display: none !important;
  }

  body.theme-v5 .nav-toggle {
    display: block;
  }

  body.theme-v5 .navbar .btn-book {
    display: none;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  body.theme-v5 .container {
    padding: 0 16px;
  }

  body.theme-v5 .services-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.theme-v5 .services-hero-graphics {
    grid-template-columns: 1fr 1fr;
  }

  body.theme-v5 .services-hero {
    padding: 60px 0;
  }

  body.theme-v5 .services-hero-title {
    font-size: 28px;
  }

  body.theme-v5 .services-hero-description {
    font-size: 16px;
  }

  body.theme-v5 .services-hero-buttons {
    flex-direction: column;
  }

  body.theme-v5 .btn {
    width: 100%;
  }

  body.theme-v5 .services-glass-card {
    min-width: 100%;
  }

  body.theme-v5 .approach-title,
  body.theme-v5 .solutions-section-title,
  body.theme-v5 .portfolio-section-title,
  body.theme-v5 .why-choose-title,
  body.theme-v5 .transform-title,
  body.theme-v5 .transform-cta-title,
  body.theme-v5 .portfolio-cta-title,
  body.theme-v5 .github-section-title {
    font-size: 28px;
  }

  body.theme-v5 .approach-content,
  body.theme-v5 .why-choose-grid,
  body.theme-v5 .solutions-grid,
  body.theme-v5 .benefits-grid,
  body.theme-v5 .categories-grid,
  body.theme-v5 .featured-projects-grid,
  body.theme-v5 .github-grid,
  body.theme-v5 .contact-options-grid {
    grid-template-columns: 1fr;
  }

  body.theme-v5 .why-choose-section,
  body.theme-v5 .approach-section,
  body.theme-v5 .digital-solutions-section,
  body.theme-v5 .portfolio-categories-section,
  body.theme-v5 .featured-projects-section,
  body.theme-v5 .contact-options-section,
  body.theme-v5 .visit-office-section {
    padding: 60px 0;
  }

  body.theme-v5 .transform-section {
    padding: 60px 0;
  }

  body.theme-v5 .contact-form-card {
    padding: 32px 20px;
  }

  body.theme-v5 .form-row,
  body.theme-v5 .consultation-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.theme-v5 .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.theme-v5 .consultation-modal-content {
    width: 95%;
    border-radius: var(--radius-sm);
  }

  body.theme-v5 .consultation-form {
    padding: 24px;
  }

  /* Shared homepage-style responsive */
  body.theme-v5 .v4-cta {
    padding: 3.5rem 1.5rem;
  }

  body.theme-v5 .v4-cta h2 {
    font-size: 1.5rem;
  }

  body.theme-v5 .v4-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  body.theme-v5 .v4-btn,
  body.theme-v5 .v4-btn-white,
  body.theme-v5 .v4-btn-outline-w {
    width: 100%;
    justify-content: center;
  }

  body.theme-v5 .v4-section {
    padding: 3.5rem 1.5rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  body.theme-v5 .container {
    padding: 0 12px;
  }

  body.theme-v5 .nav-brand a {
    font-size: 16px;
  }

  body.theme-v5 .nav-logo {
    height: 26px;
  }

  body.theme-v5 .nav-brand-link {
    font-size: 0.95rem;
  }

  body.theme-v5 .services-hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  body.theme-v5 .services-hero-description {
    font-size: 15px;
  }

  body.theme-v5 .approach-title,
  body.theme-v5 .solutions-section-title,
  body.theme-v5 .portfolio-section-title,
  body.theme-v5 .why-choose-title,
  body.theme-v5 .transform-title,
  body.theme-v5 .transform-cta-title,
  body.theme-v5 .portfolio-cta-title,
  body.theme-v5 .github-section-title {
    font-size: 22px;
  }

  body.theme-v5 .why-choose-section,
  body.theme-v5 .approach-section,
  body.theme-v5 .digital-solutions-section,
  body.theme-v5 .portfolio-categories-section,
  body.theme-v5 .featured-projects-section,
  body.theme-v5 .contact-options-section,
  body.theme-v5 .visit-office-section,
  body.theme-v5 .transform-section,
  body.theme-v5 .contact-form-section {
    padding: 40px 0;
  }

  body.theme-v5 .approach-title,
  body.theme-v5 .why-choose-title {
    margin-bottom: 32px;
  }

  body.theme-v5 .why-choose-tagline,
  body.theme-v5 .solutions-section-subtitle,
  body.theme-v5 .portfolio-section-subtitle,
  body.theme-v5 .github-section-subtitle,
  body.theme-v5 .transform-cta-subtitle {
    font-size: 15px;
  }

  body.theme-v5 .contact-option-card {
    padding: 24px;
  }

  body.theme-v5 .contact-option-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  body.theme-v5 .btn {
    padding: 11px 18px;
    font-size: 13px;
  }

  body.theme-v5 .login-card {
    padding: 32px 20px;
  }

  body.theme-v5 .solution-card-body,
  body.theme-v5 .category-card-body,
  body.theme-v5 .project-card-body {
    padding: 20px;
  }

  body.theme-v5 .contact-form-card {
    padding: 24px 16px;
  }

  body.theme-v5 .consultation-form {
    padding: 20px;
    gap: 16px;
  }

  body.theme-v5 .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  body.theme-v5 .chat-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  body.theme-v5 .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
    font-size: 18px;
  }

  body.theme-v5 .services-glass-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  body.theme-v5 .portfolio-cta-buttons {
    flex-direction: column;
  }

  /* Touch-friendly tap targets */
  body.theme-v5 .nav-links a,
  body.theme-v5 .navbar .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Office section */
  body.theme-v5 .office-content {
    padding: 24px;
  }

  body.theme-v5 .office-map {
    height: 200px;
  }

  /* Footer */
  body.theme-v5 .footer {
    margin-top: 40px;
    padding: 40px 0 0;
  }

  body.theme-v5 .footer-content {
    gap: 24px;
    padding-bottom: 24px;
  }

  body.theme-v5 .footer-bottom {
    padding: 16px 0;
    font-size: 11px;
    text-align: center;
  }

  body.theme-v5 .footer-seo-links { justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.theme-v5 * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================== */
/* ANIMATIONS & TRANSITIONS */
/* ========================================== */

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

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

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

@keyframes slideLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

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

body.theme-v5 .fade-in {
  animation: fadeIn 0.6s ease-out;
}

body.theme-v5 .slide-up {
  animation: slideUp 0.6s ease-out;
}

body.theme-v5 .slide-down {
  animation: slideDown 0.6s ease-out;
}

body.theme-v5 .slide-left {
  animation: slideLeft 0.6s ease-out;
}

body.theme-v5 .slide-right {
  animation: slideRight 0.6s ease-out;
}

body.theme-v5 .pulse {
  animation: pulse 2s ease-in-out infinite;
}

body.theme-v5 .bounce {
  animation: bounce 0.6s ease-out;
}

/* ========================================== */
/* ADDITIONAL UTILITY & STATE CLASSES */
/* ========================================== */

body.theme-v5 .text-center {
  text-align: center;
}

body.theme-v5 .text-left {
  text-align: left;
}

body.theme-v5 .text-right {
  text-align: right;
}

body.theme-v5 .mt-small {
  margin-top: 16px;
}

body.theme-v5 .mt-medium {
  margin-top: 32px;
}

body.theme-v5 .mt-large {
  margin-top: 48px;
}

body.theme-v5 .mb-small {
  margin-bottom: 16px;
}

body.theme-v5 .mb-medium {
  margin-bottom: 32px;
}

body.theme-v5 .mb-large {
  margin-bottom: 48px;
}

body.theme-v5 .hidden {
  display: none !important;
}

body.theme-v5 .visible {
  display: block !important;
}

body.theme-v5 .opacity-50 {
  opacity: 0.5;
}

body.theme-v5 .opacity-75 {
  opacity: 0.75;
}

body.theme-v5 .disabled {
  opacity: 0.6;
  pointer-events: none;
}

body.theme-v5 .cursor-pointer {
  cursor: pointer;
}

body.theme-v5 .underline {
  text-decoration: underline;
}

body.theme-v5 .no-wrap {
  white-space: nowrap;
}

body.theme-v5 .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========================================== */
/* BUTTON VARIANTS */
/* ========================================== */

body.theme-v5 .btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

body.theme-v5 .btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

body.theme-v5 .btn-block {
  display: block;
  width: 100%;
}

body.theme-v5 .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.theme-v5 .btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--border);
}

body.theme-v5 .btn-ghost:hover {
  background-color: var(--bg-muted);
}

body.theme-v5 .btn-text {
  background-color: transparent;
  color: var(--blue);
  border-color: transparent;
  padding: 0;
}

body.theme-v5 .btn-text:hover {
  text-decoration: underline;
}

/* ========================================== */
/* CARD STYLES */
/* ========================================== */

body.theme-v5 .card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

body.theme-v5 .card:hover {
  box-shadow: var(--shadow-md);
}

body.theme-v5 .card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

body.theme-v5 .card-body {
  padding: 0;
}

body.theme-v5 .card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

/* ========================================== */
/* BADGE STYLES */
/* ========================================== */

body.theme-v5 .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.theme-v5 .badge-primary {
  background-color: var(--blue-soft);
  color: var(--blue);
}

body.theme-v5 .badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #047857;
}

body.theme-v5 .badge-warning {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--amber);
}

body.theme-v5 .badge-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

body.theme-v5 .badge-info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #1e40af;
}

/* ========================================== */
/* DIVIDER & SEPARATOR */
/* ========================================== */

body.theme-v5 .divider {
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

body.theme-v5 .divider-sm {
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

body.theme-v5 .divider-lg {
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ========================================== */
/* LOADING & STATES */
/* ========================================== */

body.theme-v5 .loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body.theme-v5 .spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ========================================== */
/* GRADIENT TEXT */
/* ========================================== */

body.theme-v5 .text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-v5 .text-gradient-teal {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-v5 .text-gradient-warm {
  background: linear-gradient(135deg, var(--amber), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================== */
/* FOCUS & ACCESSIBILITY */
/* ========================================== */

body.theme-v5 a:focus,
body.theme-v5 button:focus,
body.theme-v5 input:focus,
body.theme-v5 select:focus,
body.theme-v5 textarea:focus {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
}

body.theme-v5 .skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--blue);
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

body.theme-v5 .skip-link:focus {
  top: 0;
}

/* ========================================== */
/* CLEARFIX */
/* ========================================== */

body.theme-v5 .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ========================================== */
/* PRINT STYLES */
/* ========================================== */

@media print {
  body.theme-v5 .site-nav,
  body.theme-v5 .navbar,
  body.theme-v5 .footer,
  body.theme-v5 .chat-widget,
  body.theme-v5 .scroll-top,
  body.theme-v5 .nav-cta,
  body.theme-v5 .btn-book {
    display: none !important;
  }

  body.theme-v5 {
    background-color: #ffffff;
    color: #000000;
  }

  body.theme-v5 a {
    text-decoration: underline;
  }
}

/* ========================================== */
/* END OF STYLE_V5_GLOBAL.CSS */
/* ========================================== */