/* Common Styles - Shared across all pages */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-cyan: #34d399;
  --bright-cyan: #34d399;
  --lime-green: #10b981;
  --deep-teal: #1e3a5f;
  --bg-black: #0d1117;
  --bg-dark: #111827;
  --bg-light: #ffffff;
  --bg-light-alt: #f5f7fa;
  --text-dark: #1a1a2e;
  --text-dark-secondary: #6b7280;
  --card-bg-light: #ffffff;
  --border-light: #e5e7eb;
  --text-light: #ffffff;
  --text-gray: #e2e8f0;
  --card-bg: rgba(13, 17, 23, 0.9);
  --btn-yellow: #f1dc00;
  --btn-yellow-shadow: #cfbd00;
  --hover-red: #dd0631;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}

.wpcf7-submit {
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    var(--btn-yellow-shadow) 50%,
    var(--btn-yellow) 50%
  ) !important;
  background-color: var(--btn-yellow) !important;
  background-size: 200% 100% !important;
  background-position: right !important;
  color: var(--text-dark) !important;
  border: none !important;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: background-position 0.35s ease-out;
}

.wpcf7-submit:hover {
  background-position: left !important;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: rgb(255, 68, 68) !important;
}

/* body {
  padding-top: 100px;
}

body.home {
  padding-top: 0;
} */

/* ========== Admin Bar Fix ========== */

body.admin-bar .top-bar {
  top: 32px;
}

body.admin-bar header,
body.admin-bar #mobileNav,
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .top-bar {
    top: 46px;
  }

  body.admin-bar header,
  body.admin-bar #mobileNav,
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Animated network background */
.network-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--bg-black);
  overflow: hidden;
}

.network-line-bg {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 200, 210, 0.4),
    transparent
  );
  opacity: 0.15;
  animation: lineFlow 8s linear infinite;
}

@keyframes lineFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

/* ========================================
   TOP BAR (Scrolling Text)
   ======================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--bg-black);
  z-index: 1001;
  overflow: hidden;
}

.top-bar marquee {
  width: 100%;
  height: 36px;
  line-height: 36px;
}

.top-bar-text {
  font-size: 0.8rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Top bar offsets — only when top bar is active */
.has-top-bar header,
.has-top-bar #mobileNav,
.has-top-bar .site-header {
  top: 36px;
}

.has-top-bar.admin-bar header,
.has-top-bar.admin-bar #mobileNav,
.has-top-bar.admin-bar .site-header {
  top: calc(36px + 32px);
}

@media (max-width: 768px) {
  .top-bar {
    height: 30px;
  }

  .top-bar marquee {
    height: 30px;
    line-height: 30px;
  }

  .top-bar-text {
    font-size: 0.7rem;
  }

  .has-top-bar header,
  .has-top-bar #mobileNav,
  .has-top-bar .site-header {
    top: 30px;
  }

  body.admin-bar .top-bar {
    top: 46px;
  }

  .has-top-bar.admin-bar header,
  .has-top-bar.admin-bar #mobileNav,
  .has-top-bar.admin-bar .site-header {
    top: calc(30px + 46px);
  }
}

/* ========================================
   HEADER STYLES
   ======================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.6rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav > ul > li > a:hover {
  color: var(--text-dark);
}

nav > ul > li.contact-btn > a:hover {
  color: var(--text-dark);
}

/* Dropdown Menu Styles */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--text-dark-secondary);
  border-bottom: 1.5px solid var(--text-dark-secondary);
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Mega Menu Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 580px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--text-dark-secondary);
}

.dropdown-menu.single-column {
  min-width: 200px;
  grid-template-columns: 1fr;
  padding: 1rem;
  gap: 0;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

/* Menu Category */
.menu-category {
  display: flex;
  flex-direction: column;
}

.menu-category-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: none;
  color: var(--text-dark);
}

.menu-category-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-category-items a {
  display: block;
  padding: 0.4rem 0;
  color: var(--text-dark-secondary);
  font-size: 0.85rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.menu-category-items a:hover {
  color: var(--hover-red);
}

/* Simple dropdown items (for Industry menu) */
.dropdown-menu > a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-dark-secondary);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.dropdown-menu > a:hover {
  color: var(--hover-red);
}

.contact-btn a {
  padding: 0.7rem 1.8rem;
  background: linear-gradient(
    to right,
    var(--btn-yellow-shadow) 50%,
    var(--btn-yellow) 50%
  );
  background-size: 200% 100%;
  background-position: right;
  color: var(--text-dark);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-position 0.35s ease-out;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-btn a:hover {
  background-position: left;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
footer {
  padding: 4rem 5% 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
  color: var(--text-gray);
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--text-light);
}

.badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--text-gray);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link svg {
  transition: all 0.3s ease;
  fill: var(--text-gray);
}

.social-link:hover {
  background: var(--text-light);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.social-link:hover svg {
  fill: var(--text-dark);
}

.footer-section:last-child {
  display: flex;
  flex-direction: column;
}

/* ========================================
   COMMON UTILITY CLASSES
   ======================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-dark-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Global link hover — red accent on light backgrounds */
.services a:hover,
.info-content a:hover,
.tsursec a:hover {
  color: var(--hover-red);
}

/* Footer link hover — red on dark bg */
.footer-section a:hover {
  color: var(--hover-red);
}

.footer-bottom a:hover {
  color: var(--hover-red);
}

/* CTA Buttons */
.cta-primary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(
    to right,
    var(--btn-yellow-shadow) 50%,
    var(--btn-yellow) 50%
  );
  background-size: 200% 100%;
  background-position: right;
  color: var(--text-dark);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-position 0.35s ease-out;
}

.cta-primary:hover {
  background-position: left;
}

.cta-secondary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--text-light);
  color: var(--bg-black);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.network-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: networkMove 20s linear infinite;
  z-index: 2;
}

@keyframes networkMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

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

.hero-content {
  max-width: 600px;
  z-index: 3;
  animation: fadeInUp 1s ease;
}

.hero-content .cta-primary {
  background: linear-gradient(
    to right,
    var(--btn-yellow-shadow) 50%,
    var(--btn-yellow) 50%
  );
  background-size: 200% 100%;
  background-position: right;
  color: var(--text-dark);
  border: none;
}

.hero-content .cta-primary:hover {
  background-position: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ========================================
   FLEXIBLE CONTENT SECTIONS
   ======================================== */

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services {
  padding: 6rem 5%;
  background: var(--bg-light-alt);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-icon i {
  font-size: 2rem;
  color: var(--lime-green);
}

@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--card-bg-light);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.88)
  );
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card:hover::after {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(245, 247, 250, 0.9)
  );
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  font-size: 2rem;
  border: 1px solid var(--border-light);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--hover-red);
}

.service-card p {
  color: var(--text-dark-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

a.service-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* Testimonial Section */
.testimonial {
  padding: 6rem 5%;
  background: var(--bg-light-alt);
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-content {
  text-align: center;
  position: relative;
  padding: 3rem;
  background: var(--card-bg-light);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin: 0 1rem;
}

.quote-icon {
  font-size: 4rem;
  color: var(--text-dark-secondary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Slick Slider Custom Styles */
.testimonial-slider .slick-dots {
  bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
  color: var(--text-dark);
  font-size: 12px;
  opacity: 0.3;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: var(--text-dark);
  opacity: 1;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: 50px;
  height: 50px;
  z-index: 100;
}

.testimonial-slider .slick-prev {
  left: -60px;
}

.testimonial-slider .slick-next {
  right: -60px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  font-family: "slick";
  font-size: 40px !important;
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.4;
  -webkit-font-smoothing: antialiased;
}

.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-next:hover:before {
  color: var(--text-dark);
  opacity: 1;
}

@media (max-width: 1100px) {
  .testimonial-slider .slick-prev {
    left: 10px;
  }

  .testimonial-slider .slick-next {
    right: 10px;
  }
}

/* Info Sections */
.info-section {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.info-section:nth-child(odd) {
  background: var(--bg-light);
}

.info-section:nth-child(even) {
  background: var(--bg-light-alt);
}

.info-section:nth-child(even) .info-content {
  order: 2;
}

.info-section:nth-child(even) .info-visual {
  order: 1;
}

.info-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-dark-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.info-visual {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
}

.info-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.2),
    rgba(16, 185, 129, 0.1)
  ); */
  pointer-events: none;
}

/* Stats Section */
.stats {
  padding: 6rem 5%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.stats .section-header,
.stats .stats-grid {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--lime-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* tsursec/TSURSEC Section */
.tsursec {
  padding: 6rem 5%;
  background: var(--bg-light);
  text-align: center;
  position: relative;
  z-index: 1;
}

.tsursec-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.tsursec-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.tsursec-text h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.tsursec-text p {
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.tsursec-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 550px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 40px;
  border: 10px solid #2a2a4a;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1117, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.phone-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.03));
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.cta-section h2,
.cta-section p,
.cta-section a,
.cta-section .cta-primary,
.cta-section .cta-secondary {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button — blue solid on light bg */
.cta-section .cta-secondary {
  background: linear-gradient(
    to right,
    var(--btn-yellow-shadow) 50%,
    var(--btn-yellow) 50%
  );
  background-size: 200% 100%;
  background-position: right;
  color: var(--text-dark);
  border: none;
  transition:
    background-position 0.35s ease-out,
    transform 0.3s ease;
}

.cta-section .cta-secondary:hover {
  background-position: left;
  transform: translateY(-2px);
}

/* Stats labels */
.stats .stat-label {
  color: var(--text-dark);
}

/* ========================================
   STICKY SIDE BANNER
   ======================================== */
.sticky-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

/* Vertical tab visible on the right edge */
.sticky-banner-tab {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--hover-red);
  color: var(--text-light);
  padding: 14px 10px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px 0 0 8px;
  transition: background 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.sticky-banner-tab:hover {
  background: #b80528;
}

/* Slide-out panel */
.sticky-banner-panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  background: var(--bg-black);
  color: var(--text-light);
  width: 300px;
  padding: 2rem 1.5rem;
  border-radius: 8px 0 0 8px;
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.sticky-banner.open .sticky-banner-panel {
  transform: translateY(-50%) translateX(0);
}

.sticky-banner.open .sticky-banner-tab {
  opacity: 0;
  pointer-events: none;
}

.sticky-banner-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 0;
}

.sticky-banner-close:hover {
  color: var(--text-light);
}

.sticky-banner-panel h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  padding-right: 1.5rem;
  line-height: 1.4;
  color: var(--text-light);
}

.sticky-banner-panel p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.sticky-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hover-red);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.sticky-banner-btn:hover {
  background: #b80528;
}

.top-bar {
    width: 100%;
    height: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-bar-scroll {
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.top-bar-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    font-weight: 400;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .sticky-banner-panel {
    width: 260px;
    padding: 1.5rem 1.2rem;
  }

  .sticky-banner-tab {
    font-size: 0.7rem;
    padding: 10px 8px;
  }
}

/* ========================================
   FLEXIBLE CONTENT RESPONSIVE STYLES
   ======================================== */
@media (max-width: 968px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .info-section,
  .tsursec-content {
    grid-template-columns: 1fr;
  }

  .info-section:nth-child(even) .info-content,
  .info-section:nth-child(even) .info-visual {
    order: initial;
  }

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

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

  .service-card h3 {
    font-size: 1.1rem;
  }

  .info-content h2 {
    font-size: 1.8rem;
  }

  .tsursec-text h2 {
    font-size: 1.8rem;
  }

  .tsursec-text h3 {
    font-size: 1.3rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 6rem 5% 3rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .info-content h2 {
    font-size: 1.5rem;
  }

  .tsursec-text h2 {
    font-size: 1.5rem;
  }

  .tsursec-text h3 {
    font-size: 1.2rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 3rem 1rem 4rem;
  }

  .testimonial-slider {
    padding: 0;
  }

  .testimonial-content {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    border: 1px solid var(--border-light);
    background: var(--card-bg-light);
    border-radius: 12px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .quote-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .slick-dots {
    bottom: -25px;
  }
}

/* ========================================
   MOBILE STYLES
   ======================================== */
@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid var(--border-light);
    padding: 5rem 1rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  nav a {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }

  .contact-btn a {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  /* Mobile Dropdown Styles */
  .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .has-dropdown > a::after {
    content: "+";
    display: inline;
    width: auto;
    height: auto;
    border: none;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-dark-secondary);
    flex-shrink: 0;
    margin-left: 0.5rem;
    margin-top: 0;
    transform: none;
  }

  .has-dropdown.open > a::after {
    content: "−";
  }

  .has-dropdown:hover > a::after {
    transform: none;
    margin-top: 0;
  }

  .dropdown-menu {
    position: static !important;
    left: 0 !important;
    transform: none !important;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: 0;
    background: var(--bg-light-alt);
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
    display: block;
    background-image: none;
    box-shadow: none;
    grid-template-columns: 1fr;
  }

  .has-dropdown:hover > .dropdown-menu {
    transform: none !important;
  }

  .dropdown-menu.single-column {
    min-width: 100%;
    padding: 0;
  }

  .has-dropdown.open > .dropdown-menu {
    max-height: 2000px;
    padding: 0.5rem 0;
  }

  .has-dropdown.open > .dropdown-menu.single-column {
    padding: 0.5rem 0.75rem;
  }

  .menu-category {
    margin-bottom: 0.75rem;
    padding: 0 0.75rem;
  }

  .menu-category-title {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.25rem;
    border-bottom: none;
  }

  .menu-category-items {
    gap: 0;
  }

  .menu-category-items a {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
    color: var(--text-dark-secondary);
  }

  .menu-category-items a:hover {
    color: var(--hover-red);
  }

  .dropdown-menu > a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark-secondary);
    font-size: 0.85rem;
  }

  .dropdown-menu > a:hover {
    color: var(--hover-red);
  }

  .social-links {
    justify-content: flex-start;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}
