/*
Theme Name: Kamalesh J
Theme URI: https://kamaleshj.com
Author: Kamalesh J Team
Author URI: https://kamaleshj.com
Description: Custom WordPress theme for Kamalesh J - Digital Marketing & Website Design Expert Chennai. Performance marketing, SEO, and premium web design solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kamaleshj
Tags: custom-menu, custom-logo, featured-images, one-column, two-columns, responsive-layout
*/
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

/* CSS Variables */
:root {
  --color-bg: #ffffff;
  --color-bg-dark: #0a0a0f;
  --color-text: #17171c;
  --color-text-muted: #6b6b7f;
  --color-border: #e2e2e9;
  --color-surface: #f4f4f7;
  --color-accent: #e87a1e;
  --color-accent-hover: #c96510;
  --color-accent-light: #fff3e8;
  --color-overlay-scrim: rgba(10, 10, 15, 0.7);
  --color-green: #25d366;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Poppins', var(--font-sans);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --shadow-premium: 0 20px 40px rgba(232, 122, 30, 0.08);
  --shadow-premium-glow: 0 0 30px rgba(232, 122, 30, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 24px 60px rgba(10, 10, 15, 0.12);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
  /* 40px */
}

h2 {
  font-size: 2rem;
  /* 32px */
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  /* 24px */
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--color-surface);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 122, 30, 0.2);
}

.btn-secondary {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background-color: #ffe6d1;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-surface);
  border-color: var(--color-text-muted);
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

.logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.logo span span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-contact-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  align-self: flex-start;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--color-accent-light) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  border-radius: var(--radius-full);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  max-width: 380px;
  background-color: var(--color-surface);
}

/* Trust Strip */
.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  background-color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}

.trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  gap: 1.5rem;
}

/* Home Page Bento Configurations */
.bento-services-home {
  grid-template-columns: repeat(2, 1fr);
}

.bento-portfolio-home {
  grid-template-columns: repeat(3, 1fr);
}

.bento-blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Bento Cards styling */
.bento-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-premium);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  opacity: 0;
  transition: var(--transition-premium);
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-premium-glow);
  border-color: rgba(232, 122, 30, 0.35);
}

.bento-card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: var(--transition);
}

.bento-card:hover .card-icon {
  background-color: var(--color-accent-light);
  transform: scale(1.05);
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.card-title {
  font-size: 1.25rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.price-badge {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-md);
}

.metric-badge {
  background-color: #e2fbe8;
  color: #1b8a3e;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-md);
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition);
}

.bento-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Portfolio Thumbnail container inside bento cards */
.portfolio-thumb {
  width: 100%;
  height: 180px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.bento-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-client-logo {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  height: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-client-logo img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

/* Testimonials Carousel */
.testimonials-section {
  text-align: center;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.testimonial-track {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.testimonial-card-content {
  background-color: var(--color-surface);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  overflow: hidden;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--color-accent);
  width: 24px;
}

/* Brands Carousel (3D Orbit Experience) */
.brands-carousel-section {
  padding: 5.5rem 0 6rem;
  background-image: radial-gradient(circle at top left, rgba(232, 122, 30, 0.08), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(244, 244, 247, 0.8), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f7 100%);
  color: var(--color-text);
  overflow: hidden;
}

.brands-header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.brands-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.75rem;
}

.brands-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.brands-orbit-wrap {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
}

.brands-orbit-wrap:active {
  cursor: grabbing;
}

.brands-orbit {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  perspective: 1200px;
}

/* Solar System Orbit Rings styling */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.orbit-ring-1 {
  width: calc(2 * var(--orbit-radius-x, 400px) * 0.7);
  height: calc(2 * var(--orbit-radius-y, 130px) * 0.7);
  border: 1px dashed rgba(232, 122, 30, 0.18);
}

.orbit-ring-2 {
  width: calc(2 * var(--orbit-radius-x, 400px));
  height: calc(2 * var(--orbit-radius-y, 130px));
  border: 1px dashed rgba(23, 23, 28, 0.08);
  box-shadow: inset 0 0 40px rgba(232, 122, 30, 0.02), 0 0 40px rgba(232, 122, 30, 0.02);
}

.orbit-ring-3 {
  width: calc(2 * var(--orbit-radius-x, 400px) * 1.3);
  height: calc(2 * var(--orbit-radius-y, 130px) * 1.3);
  border: 1px dashed rgba(23, 23, 28, 0.05);
}

/* Planet Cards (Client Brands) */
.brand-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(232, 122, 30, 0.12);
  box-shadow: 0 10px 30px rgba(10, 10, 15, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transform-origin: center center;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.3s ease,
    opacity 0.3s ease;
  z-index: 10;
  text-decoration: none;
}

.brand-node::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 70%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.brand-node img {
  position: relative;
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(1) contrast(1.05);
  transition: all 0.4s ease;
  z-index: 2;
}

/* Hover highlights for nodes */
.brand-node:hover {
  border-color: rgba(232, 122, 30, 0.6);
  box-shadow: 0 15px 40px rgba(232, 122, 30, 0.15),
    0 0 20px rgba(232, 122, 30, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  opacity: 1 !important;
  filter: blur(0px) !important;
  z-index: 9999 !important;
}

.brand-node:hover::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.brand-node:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

/* Centerpiece (Sun Logo) */
.brands-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(232, 122, 30, 0.3);
  box-shadow: 0 0 50px rgba(232, 122, 30, 0.12),
    inset 0 0 30px rgba(232, 122, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  animation: sun-pulse 6s infinite ease-in-out;
}

.brands-orbit-center::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(232, 122, 30, 0.05);
  border-top-color: rgba(232, 122, 30, 0.6);
  border-bottom-color: rgba(232, 122, 30, 0.4);
  animation: spin-corona 20s linear infinite;
  pointer-events: none;
}

.brands-orbit-center img {
  width: 76%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.brands-orbit-center:hover {
  border-color: #e87a1e;
  animation: sun-pulse 2s infinite ease-in-out;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 80px rgba(232, 122, 30, 0.3),
    inset 0 0 40px rgba(232, 122, 30, 0.15);
}

.brands-orbit-center:hover img {
  transform: scale(1.08) rotate(5deg);
}

@keyframes sun-pulse {
  0% {
    box-shadow: 0 0 50px rgba(232, 122, 30, 0.12),
      inset 0 0 30px rgba(232, 122, 30, 0.08);
    border-color: rgba(232, 122, 30, 0.3);
  }

  50% {
    box-shadow: 0 0 80px rgba(232, 122, 30, 0.25),
      0 0 120px rgba(232, 122, 30, 0.06),
      inset 0 0 50px rgba(232, 122, 30, 0.18);
    border-color: rgba(232, 122, 30, 0.5);
  }

  100% {
    box-shadow: 0 0 50px rgba(232, 122, 30, 0.12),
      inset 0 0 30px rgba(232, 122, 30, 0.08);
    border-color: rgba(232, 122, 30, 0.3);
  }
}

@keyframes spin-corona {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .brands-orbit-wrap {
    min-height: 500px;
  }

  .brands-orbit {
    min-height: 500px;
  }

  .brand-node {
    width: 140px;
    height: 80px;
    border-radius: 1rem;
    padding: 0.8rem;
  }

  .brands-orbit-center {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 680px) {
  .brands-orbit-wrap {
    min-height: 400px;
  }

  .brands-orbit {
    min-height: 400px;
  }

  .brand-node {
    width: 110px;
    height: 65px;
    border-radius: 0.75rem;
    padding: 0.6rem;
  }

  .brands-orbit-center {
    width: 100px;
    height: 100px;
  }

  .brands-orbit-center::before {
    inset: -8px;
  }
}

/* Trust Badges Row */
.trust-badges-section {
  padding: 3rem 0;
  text-align: center;
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  position: relative;
  min-width: 180px;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--color-border);
  color: var(--color-text-muted);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
}

/* About Page Specific Styles */
.about-hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(232, 122, 30, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(232, 122, 30, 0.03) 0%, transparent 50%);
}

.founder-story-section {
  padding-bottom: 5rem;
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.founder-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--color-border), rgba(232, 122, 30, 0.15));
  border: 1px solid var(--color-border);
  transition: var(--transition-premium);
  box-shadow: var(--shadow-md);
}

.founder-image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(232, 122, 30, 0.25);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  transition: var(--transition-premium);
}

.founder-image-frame:hover {
  transform: translateY(-6px) scale(1.005);
  border-color: rgba(232, 122, 30, 0.35);
  box-shadow: var(--shadow-lg), var(--shadow-premium-glow);
  background: linear-gradient(135deg, rgba(232, 122, 30, 0.15), rgba(232, 122, 30, 0.05));
}

.founder-image-frame:hover::after {
  border-color: var(--color-accent);
  transform: scale(0.985);
}

.founder-image-frame img {
  border-radius: calc(var(--radius-lg) - 12px);
  width: 100%;
  height: auto;
  display: block;
}

.founder-story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-story-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.75rem;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  line-height: 1.65;
  margin: 0.5rem 0;
}

.founder-story-content blockquote::before {
  content: 'â€œ';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 4rem;
  color: rgba(232, 122, 30, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* Awards Bento Grid */
.awards-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.award-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 122, 30, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 122, 30, 0.3);
  box-shadow: var(--shadow-premium), 0 10px 30px rgba(0, 0, 0, 0.02);
}

.award-card:hover::before {
  opacity: 1;
}

.award-icon-box {
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-premium);
}

.award-card:hover .award-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-accent);
  color: #ffffff;
}

.award-card-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-family: var(--font-display);
}

.award-card-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Award Showcase Gallery */
.award-showcase-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.showcase-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-premium);
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-premium);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition-premium);
  transform: translateY(10px);
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 122, 30, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-premium-glow);
}

.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
  transform: translateY(0);
}

.showcase-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}

.showcase-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

/* Social Pills styling */
.social-pills-container {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  align-items: center;
}

.social-pill-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition-premium);
}

.social-pill svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.social-pill:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

.social-pill.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-pill.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-pill.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--transition-premium);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: var(--transition-premium);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 122, 30, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-premium);
}

.process-card:hover::before {
  height: 100%;
}

.process-step-num {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(232, 122, 30, 0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: var(--transition-premium);
  text-align: right;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.process-card:hover .process-step-num {
  color: rgba(232, 122, 30, 0.18);
  transform: scale(1.1) translateY(-2px);
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.process-card p {
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* Team Section & Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 122, 30, 0.25);
}

.team-photo {
  height: 250px;
  background-color: var(--color-surface);
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-premium);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-avatar-placeholder {
  height: 250px;
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(232, 122, 30, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition-premium);
}

.team-avatar-placeholder svg {
  width: 4rem;
  height: 4rem;
  fill: currentColor;
  margin-bottom: 0.5rem;
  transition: var(--transition-premium);
  opacity: 0.45;
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-light);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(232, 122, 30, 0.3);
  margin-bottom: 0.5rem;
  transition: var(--transition-premium);
}

.team-card:hover .team-avatar-placeholder svg {
  transform: scale(1.08) translateY(-3px);
  color: var(--color-accent);
  opacity: 0.7;
}

.team-card:hover .team-avatar-placeholder .team-avatar-initials {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-premium-glow);
}

.team-info {
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.project-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.project-pill {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.project-pill:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.stats-band {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 122, 30, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(232, 122, 30, 0.25);
}

.stat-label {
  font-size: 0.95rem;
  color: #a0a0ab;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Services Page Specific Styles */
.services-grid-full {
  grid-template-columns: repeat(3, 1fr);
}

.industries-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-premium);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg), var(--shadow-premium-glow);
  border-color: rgba(232, 122, 30, 0.35);
}

.industry-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.industry-client-badge {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  align-self: center;
}

.pricing-section {
  background-color: var(--color-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-premium);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-premium-glow);
  border-color: rgba(232, 122, 30, 0.35);
}

.pricing-card.popular {
  border-color: var(--color-accent);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-display);
}

.pricing-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-accent);
  flex-shrink: 0;
}

/* Portfolio Page Styles */
.portfolio-grid-full {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: var(--color-surface);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(232, 122, 30, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-success-state {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: #e2fbe8;
  color: #1b8a3e;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-detail-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-detail-content a:hover {
  color: var(--color-accent);
}

.map-embed-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Accordion */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group-title {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent-light);
}

.faq-group-title:first-of-type {
  margin-top: 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  user-select: none;
}

.faq-question:hover {
  background-color: var(--color-surface);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  fill: var(--color-accent);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  border-top-color: var(--color-border);
}

/* Footer */
footer {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 2.5rem;
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-logo span span {
  color: var(--color-accent);
}

.footer-desc {
  color: #a0a0ab;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #1e1e24;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0ab;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #a0a0ab;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #a0a0ab;
  line-height: 1.4;
}

.footer-contact-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid #1e1e24;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #a0a0ab;
}

/* WhatsApp Widget (Slide-out Label) */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 3.5rem;
  height: 3.5rem;
  padding-left: 0.75rem;
  border-radius: 100px;
  background-color: var(--color-green);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse-green 2s infinite;
  pointer-events: none;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn:hover {
  width: 14.5rem;
  /* expand width to fit label */
  padding-left: 0.75rem;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
  flex-shrink: 0;
}

.wa-hover-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 0.75rem;
  margin-right: 1.25rem;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-btn:hover .wa-hover-label {
  opacity: 1;
  transform: translateX(0);
}

/* Lead Popup */
.lead-popup {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem;
  width: 350px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 95;
  padding: 1.75rem;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-popup.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lead-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lead-popup-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.lead-popup-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.25rem;
}

.lead-popup-close:hover {
  color: var(--color-text);
}

.lead-popup-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lead-popup-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.lead-popup .form-group {
  margin-bottom: 1rem;
}

.lead-popup .form-control {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

/* Overlay System Styles */
#overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay-scrim);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

#overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

#overlay-panel {
  position: fixed;
  top: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 800px;
  height: calc(100% - 3rem);
  background-color: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  z-index: 201;
  box-shadow: var(--glass-shadow);
  transform: translateX(calc(100% + 2rem));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  outline: none;
}

#overlay-panel.active {
  transform: translateX(0);
}

.overlay-drag-handle {
  display: none;
  width: 48px;
  height: 5px;
  background-color: rgba(23, 27, 36, 0.15);
  border-radius: var(--radius-full);
  margin: 0.85rem auto 0.25rem;
  cursor: grab;
  flex-shrink: 0;
}

.overlay-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: var(--glass-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-premium);
}

.overlay-close-btn:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: rotate(90deg) scale(1.05);
}

.overlay-close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.overlay-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.25rem;
}

.spinner {
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid rgba(232, 122, 30, 0.15);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-full);
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.overlay-body {
  padding: 4.5rem 3.5rem 3.5rem;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlay-body.loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Detail Fragment Inner Layouts */
.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.detail-content.page-entrance {
  opacity: 1;
  transform: translateY(0);
}

.detail-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-meta-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.detail-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 0;
}

.detail-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 0.75rem;
}

.detail-feature-list,
.detail-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-feature-list li,
.detail-deliverables-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
}

.detail-feature-list li svg,
.detail-deliverables-list li svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fact-box {
  background-color: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.fact-box h4 {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fact-box p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
}

.step-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-flow-item {
  display: flex;
  gap: 1.25rem;
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--color-accent);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step-details h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-details p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.detail-sidebar-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.detail-sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.detail-sidebar-card .form-group {
  margin-bottom: 1.25rem;
}

.detail-sidebar-card .form-control {
  background-color: #ffffff;
  padding: 0.75rem 1rem;
}

/* Responsive Breakpoints */

/* Desktop & Laptop (1280px and down) */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .bento-portfolio-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px and down) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    z-index: 105;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 3rem;
    transition: var(--transition);
  }

  body.nav-open .nav-menu {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.15rem;
    width: 100%;
    display: block;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 1.5rem;
  }

  .nav-contact-link {
    justify-content: flex-start;
  }

  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 320px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bento-services-home {
    grid-template-columns: 1fr;
  }

  .bento-portfolio-home {
    grid-template-columns: 1fr;
  }

  .bento-blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    margin-top: 2rem;
  }

  .testimonial-card-content {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .founder-story-content blockquote {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .detail-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .detail-sidebar {
    position: relative;
    top: 0;
  }

  #overlay-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    border: var(--glass-border);
    border-bottom: none;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #overlay-panel.active {
    transform: translateY(0);
  }

  .overlay-drag-handle {
    display: block;
  }

  .overlay-close-btn {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .overlay-body {
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .detail-content {
    padding: 6.5rem 1.25rem 4rem;
  }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-full {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-popup {
    width: calc(100% - 2rem);
    right: 1rem;
    left: 1rem;
    bottom: 6rem;
  }

  .whatsapp-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .detail-content {
    padding: 6.25rem 1rem 3.5rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for list / grid child items */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-stagger>*:nth-child(7) {
  transition-delay: 0.35s;
}

.reveal-stagger>*:nth-child(8) {
  transition-delay: 0.4s;
}

/* ==========================================================================
   CONTACT PAGE MOCK REDESIGN STYLE
   ========================================================================== */

#contact-hero {
  background-color: #fcfaf6 !important;
}

.contact-page-section {
  background-color: #fcfaf6 !important;
  padding: 5rem 0;
}

.contact-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  /* Narrower left column, wider form column */
  gap: 2.5rem;
  align-items: start;
  /* Align naturally without stretching */
}

@media (max-width: 992px) {
  .contact-grid-new {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.contact-left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-right-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details-card-new,
.contact-message-card-new,
.contact-connect-card-new,
.contact-hours-card-new {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.015);
}

.contact-details-card-new h2,
.contact-message-card-new h2,
.contact-connect-card-new h2,
.contact-hours-card-new h2 {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--color-text);
  border-bottom: 1px solid #f1ede6;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
}

.contact-row-new {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-row-new:last-child {
  margin-bottom: 0;
}

.contact-icon-new {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 3.5px solid #e87a1e;
  color: #e87a1e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(232, 122, 30, 0.08);
}

.contact-icon-new svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-text-new h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-family: var(--font-display);
}

.contact-text-new p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.contact-text-new p a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-text-new p a:hover {
  color: #e87a1e;
}

.contact-map-card-new {
  height: 280px;
  /* Fixed, balanced map height */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.015);
  margin-top: 2rem;
}

.contact-map-card-new iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-group-new {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-control-new {
  width: 100%;
  padding: 1.1rem 1.75rem;
  border: 1.8px solid #e87a1e;
  border-radius: 100px;
  background-color: #ffffff;
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.textarea-new {
  border-radius: 24px !important;
  min-height: 150px;
  resize: vertical;
}

.form-control-new:focus {
  border-color: #d16b17;
  box-shadow: 0 0 12px rgba(232, 122, 30, 0.2);
}

.btn-submit-new {
  width: 100%;
  padding: 1.1rem 2rem;
  border-radius: 100px;
  border: none;
  background-color: #e87a1e;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(232, 122, 30, 0.2);
  display: block;
  font-family: var(--font-display);
}

.btn-submit-new:hover {
  background-color: #d16b17;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 122, 30, 0.3);
}

.contact-sub-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (max-width: 480px) {
  .contact-sub-row-new {
    grid-template-columns: 1fr;
  }
}

.contact-connect-card-new,
.contact-hours-card-new {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-socials-new {
  display: flex;
  gap: 1.25rem;
  margin-top: auto;
  margin-bottom: auto;
  justify-content: flex-start;
}

.social-circle-new {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 3.5px solid #e87a1e;
  color: #e87a1e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(232, 122, 30, 0.08);
}

.social-circle-new:hover {
  background-color: #e87a1e;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(232, 122, 30, 0.25);
}

.social-circle-new svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-hours-card-new p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.contact-hours-card-new p strong {
  color: var(--color-text);
}

/* ==========================================================================
   DYNAMIC BREADCRUMBS STYLE
   ========================================================================== */

.breadcrumb-nav {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-back:hover {
  color: #e87a1e;
  border-color: rgba(232, 122, 30, 0.3);
  transform: translateX(-4px);
  box-shadow: 0 6px 15px rgba(232, 122, 30, 0.08);
}

.btn-back svg {
  transition: transform 0.2s;
}

.btn-back:hover svg {
  transform: translateX(-2px);
}

/* ==========================================================================
   PREMIUM EDITORIAL & CASE STUDY REDESIGN
   ========================================================================== */

/* Hero area upgrade with mesh gradient and refined shadow */
.detail-header {
  background: radial-gradient(at 0% 0%, rgba(243, 237, 230, 0.45) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(254, 244, 226, 0.35) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(232, 122, 30, 0.08) 0px, transparent 50%),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  position: relative;
  overflow: hidden;
}

.detail-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  color: var(--color-text);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.detail-header .text-muted {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 850px;
  color: var(--color-text-muted);
}

.detail-meta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.metric-badge {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid rgba(232, 122, 30, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
}

.industry-client-badge {
  background-color: #f1ede6;
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 550;
  font-size: 0.9rem;
}

/* Browser Mockup container around metrics dashboard */
.browser-mockup {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin: 2.5rem 0;
}

.browser-mockup-header {
  height: 2.5rem;
  background-color: #f5f3ef;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 0.5rem;
}

.browser-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ff5f56;
}

.browser-dot:nth-child(2) {
  background-color: #ffbd2e;
}

.browser-dot:nth-child(3) {
  background-color: #27c93f;
}

.browser-address {
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 6px;
  height: 1.5rem;
  margin: 0 2rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  padding-left: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  letter-spacing: 0.03em;
}

.browser-mockup-content {
  padding: 2.5rem;
  background: radial-gradient(circle at 100% 100%, rgba(254, 244, 226, 0.15) 0%, transparent 40%);
}

.metrics-dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  color: var(--color-text);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding-bottom: 0.75rem;
}

/* Stats dashboard cards grid */
.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.stat-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 122, 30, 0.2);
  box-shadow: 0 8px 20px rgba(232, 122, 30, 0.04);
}

.stat-value-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.stat-desc-modern {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Quote Bubble Testimonial styling */
.testimonial-card-content {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.015) !important;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.testimonial-card-content::before {
  content: "â€œ";
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-size: 8rem;
  font-family: var(--font-display);
  color: rgba(232, 122, 30, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 1.15rem !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: var(--color-text) !important;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   MOBILE BRAND SLIDER / MARQUEE STYLES
   ========================================================================== */
@media (max-width: 767px) {
  .brands-carousel-section {
    padding: 3.5rem 0 4rem;
  }

  .brands-orbit-wrap {
    min-height: auto;
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    cursor: default;
  }

  .brands-orbit-wrap:active {
    cursor: default;
  }

  .brands-orbit {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-height: auto !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
    animation: mobile-marquee 25s linear infinite !important;
    perspective: none !important;
    transform-style: flat !important;
  }

  .brand-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex-shrink: 0 !important;
    width: 130px !important;
    height: 75px !important;
    opacity: 1 !important;
    filter: none !important;
    box-shadow: var(--shadow-sm) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(232, 122, 30, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem !important;
    border-radius: var(--radius-md) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  }

  .brand-node:hover {
    transform: scale(1.05) !important;
    border-color: rgba(232, 122, 30, 0.4) !important;
    box-shadow: var(--shadow-md) !important;
  }

  .orbit-ring,
  .brands-orbit-center {
    display: none !important;
  }
}

@keyframes mobile-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Fallback: Ensure visibility of scroll-reveal elements if JS/IntersectionObserver fails.
   Uses <noscript> body class approach — the .reveal.active rules in the observer handle normal flow.
   IMPORTANT: Do NOT use transform: none !important here — it kills JS-driven
   animations like the 3D brand orbit, testimonial transitions, etc. */
.no-js .reveal,
.no-js .reveal-stagger > * {
  opacity: 1;
  transform: none;
}
