/*
 * ============================================================
 *  4th Avenue Solutions — enhance.css
 *  Premium design layer — loaded AFTER main.css
 *  Additive only: overrides and extends, never destructive
 * ============================================================
 */

/* ============================================================
   1. DESIGN TOKEN OVERRIDES
   ============================================================ */
:root {
  --accent-color: #00b4d8;
  --accent-secondary: #0077b6;
  --accent-glow: rgba(0, 180, 216, 0.35);
  --accent-gradient: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);

  --bg-deep: #080c14;
  --bg-dark: #0d1b2a;
  --bg-card: #111e2d;
  --bg-glass: rgba(13, 27, 42, 0.72);
  --border-glass: rgba(0, 180, 216, 0.18);

  --font-display: "Raleway", sans-serif;
  --fs-hero-h2: clamp(2.2rem, 5vw, 3.8rem);
  --fs-section-h2: clamp(1.75rem, 3vw, 2.25rem);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 28px rgba(0, 180, 216, 0.25);
  --shadow-hover: 0 8px 48px rgba(0, 0, 0, 0.45);
}

:root {
  --nav-hover-color: #00b4d8;
  --nav-dropdown-hover-color: #00b4d8;
  --nav-color: #e2e8f0;
}

/* ============================================================
   2. GLOBAL BASE UPGRADES
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: #c9d1d9;
  font-size: 15.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: #e2e8f0;
}

a {
  color: var(--accent-color);
  transition: var(--transition-base);
}

a:hover {
  color: #48cae4;
}

::selection {
  background: rgba(0, 180, 216, 0.3);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

/* ============================================================
   3. PRELOADER
   ============================================================ */
#preloader {
  background: var(--bg-deep);
  z-index: 999999;
}

#preloader::before {
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
}

/* ============================================================
   4. HEADER & GLASSMORPHISM NAVBAR
   ============================================================ */
.header {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
  padding: 14px 0;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.5);
}

body.mobile-nav-active .header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header.header-scrolled {
  background: rgba(8, 12, 20, 0.96);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(0, 180, 216, 0.22);
}

.header .logo .sitename {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #e2e8f0;
  text-transform: none;
}

.header .logo .sitename sup {
  font-size: 0.65em;
  top: -0.5em;
  color: var(--accent-color);
}

.header .logo>span {
  color: var(--accent-color);
  font-size: 1.7rem;
  font-weight: 800;
}

@media (min-width: 1200px) {

  .navmenu a,
  .navmenu a:focus {
    color: #a0aec0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 20px 16px;
    transition: color var(--transition-base);
    position: relative;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* ============================================================
   5. SCROLL-TOP BUTTON
   ============================================================ */
.scroll-top {
  background: var(--accent-gradient);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 180, 216, 0.5);
}

.scroll-top i {
  font-size: 22px;
}

/* ============================================================
   6. GLOBAL SECTION BACKGROUNDS
   ============================================================ */
section,
.section {
  padding: 80px 0;
  background-color: var(--bg-deep);
  color: #c9d1d9;
}

.light-background {
  background-color: #0d1b2a !important;
  --background-color: #0d1b2a;
  --surface-color: #111e2d;
}

.dark-background {
  background-color: var(--bg-deep) !important;
  --background-color: var(--bg-deep);
  --surface-color: #111e2d;
}

/* ============================================================
   7. SECTION TITLES
   ============================================================ */
.section-title {
  padding-bottom: 56px;
}

.section-title h2 {
  font-size: var(--fs-section-h2);
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  padding-bottom: 16px;
  text-transform: none;
}

.section-title h2::after {
  height: 3px;
  width: 60px;
  background: var(--accent-gradient);
  border-radius: 4px;
}

.section-title p {
  color: #718096;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero img {
  filter: brightness(0.25) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 119, 182, 0.22) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.88) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero .container {
  background: transparent;
  border-top: none;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: var(--fs-hero-h2);
  font-weight: 900;
  line-height: 1.15;
  color: #e2e8f0;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h2 .text-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.1rem;
  color: #8b97a8;
  min-height: 1.8em;
  font-weight: 400;
}

.typing-effect::after {
  content: "|";
  animation: blink-cursor 0.85s step-start infinite;
  color: var(--accent-color);
  margin-left: 2px;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero .btn-get-started {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  padding: 14px 42px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(0, 180, 216, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: inline-block;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 180, 216, 0.55);
  color: #fff;
}

/* ============================================================
   9. PAGE TITLE BANNER (inner pages)
   ============================================================ */
.page-title {
  background: linear-gradient(135deg, #080c14 0%, #0d1b2a 60%, #0a1628 100%);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-title::after {
  content: "";
  position: absolute;
  top: -40px;
  right: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.page-title .breadcrumbs ol {
  color: #718096;
  position: relative;
  z-index: 1;
}

.page-title .breadcrumbs ol a {
  color: var(--accent-color);
}

.page-title .breadcrumbs ol .current {
  color: #a0aec0;
}

/* ============================================================
   10. SYNERGY SECTION — WAS COMPLETELY UNSTYLED
   ============================================================ */
.synergy {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.synergy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.synergy-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.synergy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.synergy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.38);
}

.synergy-card:hover::before {
  opacity: 1;
}

.synergy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.22);
  border-radius: 50%;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.synergy-card:hover .synergy-icon {
  background: rgba(0, 180, 216, 0.18);
  box-shadow: 0 0 24px rgba(0, 180, 216, 0.3);
}

.synergy-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  line-height: 1;
}

.synergy-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 14px;
}

.synergy-card p {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   11. SERVICES SECTION
   ============================================================ */
.services .service-item {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 48px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.3);
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 14px 0 12px;
}

.services .service-item h3 a {
  color: #e2e8f0;
  transition: color var(--transition-base);
}

.services .service-item:hover h3 a {
  color: var(--accent-color);
}

.services .service-item p {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.7;
}

.services .service-item .icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 50%;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.services .service-item:hover .icon {
  background: rgba(0, 180, 216, 0.15);
  box-shadow: 0 0 24px rgba(0, 180, 216, 0.25);
}

.services .service-item .icon i {
  font-size: 2rem;
  transition: transform var(--transition-base);
}

.services .service-item:hover .icon i {
  transform: scale(1.12);
}

.services .service-item.item-cyan i {
  color: #48cae4;
}

.services .service-item.item-orange i {
  color: #fb923c;
}

.services .service-item.item-teal i {
  color: #34d399;
}

.services .service-item.item-red i {
  color: #f87171;
}

.services .service-item.item-indigo i {
  color: #818cf8;
}

.services .service-item.item-pink i {
  color: #f472b6;
}

/* ============================================================
   12. ABOUT SECTION — WAS COMPLETELY UNSTYLED
   ============================================================ */
.about.section {
  background: var(--bg-dark);
}

.about-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.about-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-description {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list-wrapper {
  margin-top: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0aec0;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition-base);
}

.feature-list li:hover {
  color: #e2e8f0;
}

.feature-list i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.image-wrapper .images {
  border-radius: 20px;
  overflow: hidden;
}

.image-wrapper .main-image {
  border-radius: 20px;
  transition: transform var(--transition-slow);
  display: block;
  width: 100%;
}

.image-wrapper:hover .main-image {
  transform: scale(1.03);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}

/* ============================================================
   13. TEAM SECTION — GLASS CARD + AVATAR STYLES
   ============================================================ */
.team.section {
  background: var(--bg-deep);
}

.team .team-member {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  width: 100%;
}

.team .team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.35);
}

.team .team-member .member-img {
  position: relative;
  min-height: 200px;
  background: linear-gradient(135deg, #0d1b2a 0%, #111e2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team .team-member:hover .member-avatar {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.avatar-blue {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.avatar-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.avatar-teal {
  background: linear-gradient(135deg, #0d9488, #34d399);
}

.avatar-gold {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

.avatar-red {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.member-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 3;
  display: none;
}

.member-photo[src]:not([src=""]) {
  display: block;
}

.team .team-member .social {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  height: 44px;
  z-index: 4;
}

.team .team-member .social a {
  color: #a0aec0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color var(--transition-base), background var(--transition-base);
}

.team .team-member .social a:hover {
  color: var(--accent-color);
  background: rgba(0, 180, 216, 0.12);
}

.team .team-member .member-info {
  padding: 22px 20px;
  text-align: center;
  background: transparent;
}

.team .team-member .member-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.team .team-member .member-info span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}

/* ============================================================
   14. CONTACT SECTION
   ============================================================ */
.contact.section {
  background: var(--bg-dark);
}

.contact .info-item {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  height: 100%;
}

.contact .info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 180, 216, 0.32);
}

.contact .info-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-right: 0;
  margin-bottom: 4px;
  background: rgba(0, 180, 216, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 180, 216, 0.2);
  flex-shrink: 0;
}

.contact .info-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.contact .info-item p {
  color: #718096;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

.contact .php-email-form {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 36px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e2e8f0;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
  background: rgba(8, 12, 20, 0.85);
  color: #e2e8f0;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #4a5568;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-gradient);
  border: none;
  padding: 14px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.5);
}

/* ============================================================
   15. SERVICE DETAILS
   ============================================================ */
.service-details.section {
  background: var(--bg-dark);
}

.service-details .service-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-details .service-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.18);
}

.service-details .services-list {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.service-details .services-list a {
  color: #718096;
  border-left: 3px solid rgba(0, 180, 216, 0.2);
  padding: 8px 0 8px 16px;
  margin: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-base), border-color var(--transition-base), padding-left var(--transition-base);
}

.service-details .services-list a:hover,
.service-details .services-list a.active {
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 20px;
}

.service-details .download-catalog a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #718096;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-base);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .download-catalog i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.service-details .help-box {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}

.service-details .help-box .help-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 14px;
}

.service-details .help-box h4 {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.service-details .help-box p {
  color: #718096;
  font-size: 0.875rem;
}

.service-details .help-box a {
  color: var(--accent-color);
}

.service-details .services-img {
  border-radius: 14px;
  width: 100%;
  margin-bottom: 32px;
}

.service-details h3 {
  color: #e2e8f0;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-details p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-details ul {
  padding: 0;
}

.service-details ul li {
  color: #a0aec0;
  font-size: 0.9rem;
  padding: 6px 0;
}

.service-details ul i {
  color: var(--accent-color);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(0, 180, 216, 0.12);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 119, 182, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-top {
  padding: 60px 0 40px;
  border-top: none;
}

.footer .footer-about .logo .sitename {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #e2e8f0;
}

.footer .footer-about .logo .sitename sup {
  color: var(--accent-color);
  font-size: 0.6em;
  top: -0.5em;
}

.footer .footer-contact p {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.9;
  margin-bottom: 0;
}

.footer .footer-contact strong {
  color: #718096;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.18);
}

.footer .footer-links ul li {
  padding: 5px 0;
  border: none;
}

.footer .footer-links ul a {
  color: #4a5568;
  font-size: 0.875rem;
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer .footer-links ul a::before {
  content: "›";
  color: var(--accent-color);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a:hover::before {
  opacity: 1;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer .social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-size: 1rem;
  transition: color var(--transition-base), border-color var(--transition-base),
    background var(--transition-base), box-shadow var(--transition-base);
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: rgba(0, 180, 216, 0.1);
  box-shadow: 0 0 14px rgba(0, 180, 216, 0.25);
}

.footer .copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer .copyright p {
  color: #2d3748;
  font-size: 0.8rem;
  margin: 0;
}

.footer .copyright .sitename {
  color: var(--accent-color);
}

/* ============================================================
   17. ANIMATIONS
   ============================================================ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(0, 180, 216, 0.2);
  }

  50% {
    box-shadow: 0 0 32px rgba(0, 180, 216, 0.45);
  }
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero h2 {
    letter-spacing: -0.01em;
  }

  .hero .btn-get-started {
    padding: 12px 32px;
    font-size: 0.85rem;
  }

  .synergy-card {
    padding: 32px 24px;
  }

  .services .service-item {
    padding: 36px 20px;
  }

  .contact .php-email-form {
    padding: 28px 20px;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .page-title {
    padding: 28px 0;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   19. ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   20. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #1a2744;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* ============================================================
   ULTRA-SPECIFIC MOBILE NAV OVERRIDES
   ============================================================ */
body.mobile-nav-active .navmenu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(13, 27, 42, 0.95) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

@media (max-width: 1199px) {
  body.mobile-nav-active .navmenu ul {
    display: block !important;
    position: absolute !important;
    top: 80px !important;
    right: 20px !important;
    bottom: 20px !important;
    left: 20px !important;
    width: auto !important;
    height: auto !important;
    background: #0d1b2a !important;
    border: 1px solid rgba(0, 180, 216, 0.3) !important;
    border-radius: 8px !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    padding: 20px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.mobile-nav-active .navmenu ul li {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.mobile-nav-active .navmenu a {
    display: flex !important;
    color: #e2e8f0 !important;
    padding: 12px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 16px !important;
  }
}

/* ============================================================
   21. AI PRODUCTS SECTION
   ============================================================ */
.ai-products {
  background: var(--bg-dark);
  padding: 80px 0;
}

/* Section title */
.ai-products .section-title h2 {
  color: #e2e8f0;
}
.ai-products .section-title p {
  color: #8892a4;
}

/* Category label */
.ai-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 52px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  display: inline-block;
}

.ai-category-title:first-child {
  margin-top: 0;
}

/* Card */
.ai-product-card {
  background: #112030 !important;
  border: 1px solid rgba(0, 180, 216, 0.18) !important;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}

/* Top accent bar — hidden by default, reveals on hover */
.ai-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.45);
  box-shadow: 0 0 28px rgba(0, 180, 216, 0.18), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.ai-product-card:hover::before {
  opacity: 1;
}

/* Circular icon */
.ai-product-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ai-product-icon i {
  font-size: 1.75rem;
  color: #00b4d8;
}

.ai-product-card:hover .ai-product-icon {
  background: rgba(0, 180, 216, 0.15);
  box-shadow: 0 0 22px rgba(0, 180, 216, 0.35);
}

/* Title */
.ai-product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Description */
.ai-product-card p {
  color: #8892a4;
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Explore button */
.ai-product-card .btn-try {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00b4d8;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-top: auto;
}

.ai-product-card .btn-try i {
  transition: transform 0.2s ease;
}

.ai-product-card:hover .btn-try {
  color: #48cae4;
  border-bottom-color: rgba(72, 202, 228, 0.4);
}

.ai-product-card:hover .btn-try i {
  transform: translateX(4px);
}
