/* =========================================================
   GARVISH TECH SOLUTIONS - PREMIUM AI-TECH THEME
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #121212;
  /* Dark charcoal base matching logo bg */
  --bg-secondary: #1A1A1A;
  /* Slightly lighter charcoal */
  --bg-card: #222222;
  /* Card background */
  --accent-blue: #C59B3F;
  /* Primary Gold (retaining the variable name for compatibility) */
  --accent-cyan: #E5BA73;
  /* Secondary Lighter Gold */
  --accent-purple: #8B6914;
  /* Tertiary Dark Gold/Bronze */
  --gradient-hero: radial-gradient(circle at top right, rgba(197, 155, 63, 0.15), transparent 45%), linear-gradient(135deg, #121212 0%, #1A1A1A 100%);
  --gradient-accent: linear-gradient(90deg, #C59B3F, #E5BA73);
  --gradient-glow: linear-gradient(135deg, #C59B3F 0%, #E5BA73 100%);
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border-subtle: rgba(197, 155, 63, 0.15);
  /* Subtle gold border */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(197, 155, 63, 0.2);
  --shadow-glow: 0 0 40px rgba(197, 155, 63, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --primary-accent: var(--accent-blue);
  --secondary-accent: var(--accent-cyan);
}

[data-theme="light"] {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-primary: #121212;
  --text-secondary: #333333;
  --text-muted: #666666;
  --border-subtle: rgba(197, 155, 63, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(197, 155, 63, 0.3);
  --shadow-glow: 0 0 40px rgba(197, 155, 63, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
  --gradient-hero: radial-gradient(circle at top right, rgba(197, 155, 63, 0.15), transparent 45%), linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

[data-theme="light"] footer {
  background: #FFFFFF;
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition);
  margin-left: 10px;
}

.theme-toggle-btn:hover {
  background: var(--glass-bg);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  background-image:
    linear-gradient(rgba(197, 155, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 155, 63, 0.04) 1px, transparent 1px),
    var(--gradient-hero);
  background-size: 60px 60px, 60px 60px, auto;
  background-attachment: fixed;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  position: relative;
  animation: riverEffect 4s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes riverEffect {
  0% {
    background-position: 0 0, 0 0, center top;
  }
  100% {
    background-position: -60px 0, -60px 0, center top;
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Navigation */
header {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 15px 0;
  box-shadow: var(--shadow-card);
}

[data-theme="light"] header.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 96%;
}

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

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.04);
}

.mobile-menu-btn {
  display: none;
}

nav>ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul li a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

/* Nav Link Underline Hover */
nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-accent);
  transition: var(--transition);
}

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

nav ul li a:hover::after {
  width: 100%;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  min-width: 320px;
  max-height: 450px;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
  z-index: 1;
  padding: 10px 0;
  border-radius: var(--radius-md);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

/* Custom Scrollbar for Dropdown */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.dropdown:hover .dropdown-menu {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-menu li {
  padding: 0 10px;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-glow);
  color: white !important;
  border: none;
  box-shadow: 0 0 20px rgba(197, 155, 63, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(197, 155, 63, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary) !important;
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Hero Section â€” Premium 2-col split */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Badges */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.875rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-trusted {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trusted-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.trusted-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Page Header (for inner pages) */
.page-header {
  padding: 40px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(197, 155, 63, 0.1) 0%, transparent 80%);
}

.page-header h1 {
  font-size: 3.5rem;
}

/* Breadcrumb */
.breadcrumb-container {
  background: var(--glass-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 15px 0;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 12px;
  color: var(--text-muted);
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  color: var(--text-secondary);
}

.breadcrumb li:last-child {
  color: var(--accent-cyan);
  font-weight: 500;
}

/* Generic Section */
.section {
  padding: 100px 0;
  position: relative;
}

.bg-light {
  background: transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
}

/* Tech Stack Section tags */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* Services / Glass Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(197, 155, 63, 0.25);
}

.card-icon-inner {
  /* Inner icon wrapper if needed */
}

.card h3,
.card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
}

.card a.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-cyan);
  font-size: 14px;
}

.card a.read-more:hover {
  gap: 8px;
}

/* Content Layout (Image + Text) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.col-6 {
  flex: 1 1 calc(50% - 30px);
}

.content-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.content-box ul {
  list-style: none;
  margin: 30px 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  border-left: 3px solid var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.content-box ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.content-box ul li:last-child {
  margin-bottom: 0;
}

.content-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(197, 155, 63, 0.5);
}

/* Image styling in Row */
.col-6 img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.col-6 img:hover {
  transform: translateY(-4px);
  border-color: var(--border-subtle);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Stats Section Update */
.stats-section {
  background: transparent;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent-blue), transparent) 1;
  position: relative;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stats-grid h2 {
  font-size: 3.5rem;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stats-grid p {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
}

/* Tech Grid */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.tech-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.tech-badge:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
  background: rgba(197, 155, 63, 0.08);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.faq-question span {
  color: var(--accent-cyan);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  display: none;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* FAQ Accordion */
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question span {
  color: var(--accent-cyan);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  display: none;
  font-size: 1rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent-blue);
}

.contact-info-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 1.2rem;
}

.contact-info-card p {
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(197, 155, 63, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
footer {
  background: transparent;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.03);
}

.footer-widget h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.footer-widget p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-widget:nth-child(2) .footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}

.footer-widget:last-child .footer-links li {
  /* Removed text-indent and padding to prevent emoji overlap */
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid transparent;
  border-image: var(--gradient-accent) 1;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 30px;
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img,
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
  transition: var(--transition);
}

.whatsapp-float img {
  filter: brightness(0) invert(1);
}

.whatsapp-float svg {
  fill: currentColor;
}



/* =========================================================
   PREMIUM HOMEPAGE COMPONENTS
   ========================================================= */

/*  Hero 2-col Split Layout  */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 2% 80px;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Grid & orb backgrounds */
.hero-grid-bg {
  display: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: pulse-glow 8s infinite alternate;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 155, 63, 0.12), transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.08), transparent 70%);
  top: 50%;
  right: -80px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.08), transparent 70%);
  bottom: -50px;
  left: 40%;
  animation-delay: 5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #C59B3F 0%, #E5BA73 50%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 100%;
  text-align: left;
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--text-secondary);
  text-align: left;
}

/* Micro stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(197, 155, 63, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-glow 4s infinite alternate;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 155, 63, 0.08);
  animation: float 6s ease-in-out infinite;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-subtle);
}

.hc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hc-dot.red {
  background: #FF5F57;
}

.hc-dot.yellow {
  background: #FEBC2E;
}

.hc-dot.green {
  background: #28C840;
}

.hc-title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: monospace;
}

.hero-card-body {
  padding: 24px;
}

.hc-line {
  height: 8px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.hc-line-blue {
  width: 70%;
  background: var(--gradient-glow);
  opacity: 0.7;
}

.hc-line-purple {
  width: 50%;
  background: var(--gradient-accent);
  opacity: 0.5;
}

.hc-line-short {
  width: 35%;
  background: rgba(255, 255, 255, 0.1);
}

.hc-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.hc-service {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
}

.hc-icon {
  font-size: 16px;
}

.hc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #28C840;
  margin-top: 16px;
}

.hc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28C840;
  animation: pulse-glow 2s infinite;
}

.hc-logo {
  height: 36px;
  width: auto;
  margin: 12px 24px 20px;
  opacity: 0.7;
}

/* Trusted strip */
.hero-trusted-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0 30px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 20px;
}

.btn-glow {
  box-shadow: 0 0 30px rgba(197, 155, 63, 0.4), 0 0 60px rgba(197, 155, 63, 0.15);
}

.btn-glow:hover {
  box-shadow: 0 0 50px rgba(197, 155, 63, 0.6), 0 0 100px rgba(197, 155, 63, 0.2);
}

/* â”€â”€ Premium Service Cards â”€â”€ */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-premium {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card-premium:hover {
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.service-card-premium:hover .scp-glow {
  opacity: 1;
}

.scp-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 155, 63, 0.15), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scp-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.service-card-premium h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card-premium p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.scp-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.scp-link span {
  transition: transform 0.3s;
}

.scp-link:hover {
  color: var(--accent-blue);
}

.scp-link:hover span {
  transform: translateX(4px);
}

/* â”€â”€ Bento Grid Stats â”€â”€ */
.bento-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  overflow: hidden;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.bento-big {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-wide {
  grid-column: 1 / 3;
}

.bento-accent {
  border-color: rgba(255, 179, 0, 0.3);
}

.bento-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-big .bento-num {
  font-size: 6rem;
}

.bento-plus {
  font-size: 0.6em;
  vertical-align: super;
}

.bento-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bento-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-bg-icon {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-size: 6rem;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.bento-big .bento-bg-icon {
  font-size: 9rem;
  bottom: -20px;
  right: -10px;
}

/* â”€â”€ Why Choose Us / Process Timeline â”€â”€ */
.why-section {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left h2 {
  font-size: 2.6rem;
  margin: 16px 0 20px;
}

.why-left>p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--accent-blue);
  background: rgba(197, 155, 63, 0.05);
}

.wf-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.why-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.why-feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pt-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-left: 2px solid var(--border-subtle);
  padding-left: 30px;
  margin-left: 20px;
  position: relative;
  transition: var(--transition);
}

.pt-step:last-child {
  border-color: transparent;
}

.pt-step:hover {
  border-color: var(--accent-blue);
}

.pt-num {
  position: absolute;
  left: -20px;
  top: 24px;
  width: 38px;
  height: 38px;
  background: var(--gradient-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(197, 155, 63, 0.3);
}

.pt-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.pt-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* â”€â”€ CTA Band â”€â”€ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, rgba(197, 155, 63, 0.12) 0%, rgba(229, 186, 115, 0.12) 100%);
  border-top: 1px solid rgba(197, 155, 63, 0.2);
  border-bottom: 1px solid rgba(197, 155, 63, 0.2);
  padding: 80px 0;
  overflow: hidden;
}

.cta-band-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(197, 155, 63, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 96%;
  max-width: 100%;
}

.cta-band h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cta-band p {
  color: var(--text-secondary);
  margin: 0;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



/* â”€â”€ Featured Projects / Testimonials Extensions â”€â”€ */
.case-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.case-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-img-placeholder {
  font-size: 3rem;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(197, 155, 63, 0.3));
}

.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-glow);
  color: white;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
}

.case-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.case-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.case-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.case-link:hover {
  color: var(--accent-blue);
}

/* Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testi-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testi-text {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(197, 155, 63, 0.25);
}

.testi-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testi-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 36px;
  font-size: 3rem;
  opacity: 0.05;
  color: var(--text-primary);
  pointer-events: none;
}

/* Prevent horizontal overflow on all screens */
html,
body {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

/* Improve tap targets for mobile â€” all links and buttons min 44px height */
a,
button,
.btn,
.faq-question,
.mobile-menu-btn,
nav ul li a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Smooth momentum scrolling on iOS */
body {
  -webkit-overflow-scrolling: touch;
}

/* Prevent font-size inflation on orientation change */
* {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

@media (max-width: 1400px) {
  .hero-container {
    width: 94%;
    padding: 70px 2%;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
  }

  .bento-num {
    font-size: 3.2rem;
  }

  .bento-big .bento-num {
    font-size: 5rem;
  }
}

@media (max-width: 1100px) {

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 4%;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-card {
    max-width: 460px;
    width: 100%;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 16px 20px;
  }

  .hero-stat {
    padding: 0 16px;
  }

  /* Services grid: 2 columns */
  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Bento grid: 2 columns */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bento-big {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-wide {
    grid-column: 1 / 3;
  }

  .bento-big .bento-num {
    font-size: 4.5rem;
  }

  .bento-num {
    font-size: 3rem;
  }

  /* Why section: single column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-left h2 {
    font-size: 2.2rem;
  }

  /* Footer: 2 columns */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* Page headers */
  .page-header h1 {
    font-size: 2.8rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Nav gap reduce */
  nav>ul {
    gap: 22px;
  }

  nav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {

  /* Container slightly wider on tablets */
  .container {
    width: 92%;
  }

  /* Section padding reduce */
  .section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .hero-container {
    padding: 50px 4%;
    gap: 40px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .hero-trusted-strip {
    gap: 10px;
    padding: 16px 0 24px;
  }

  .city-badge {
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  /* Stats row â€” 2x2 grid on tablet */
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 380px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Services: still 2 col on tablet */
  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bento: full single column on tablet portrait */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-big,
  .bento-wide {
    grid-column: 1;
  }

  .bento-card {
    padding: 28px;
  }

  .bento-big .bento-num {
    font-size: 4rem;
  }

  /* Process timeline */
  .pt-step {
    padding-left: 24px;
    gap: 16px;
  }

  .pt-content strong {
    font-size: 1rem;
  }

  /* Testimonials: 1 column */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Case study grid */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.98rem;
    padding: 20px;
  }

  /* CTA band */
  .cta-band {
    padding: 60px 0;
  }

  .cta-band h2 {
    font-size: 1.9rem;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {

  .container {
    width: 90%;
  }

  /* â”€â”€ NAVIGATION â”€â”€ */
  header {
    padding: 14px 0;
  }

  header.scrolled {
    padding: 10px 0;
  }

  .header-container {
    width: 92%;
  }

  .logo-img {
    height: 38px;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .mobile-menu-btn:hover {
    background: rgba(197, 155, 63, 0.1);
    border-color: var(--accent-blue);
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  nav>ul {
    display: none;
    flex-direction: column;
    position: static;
    width: 100%;
    background: rgba(4, 8, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0 24px;
    gap: 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  nav>ul.active {
    display: flex;
    animation: fadeInUp 0.25s ease;
  }

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

  nav>ul>li:last-child {
    border-bottom: none;
  }

  nav>ul>li>a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    color: var(--text-secondary);
    min-height: 50px;
  }

  nav>ul>li>a:hover {
    color: var(--accent-cyan);
    background: rgba(255, 179, 0, 0.05);
  }

  nav>ul>li>a::after {
    display: none;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    transform: none;
    opacity: 1;
    min-width: unset;
    width: 100%;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    padding: 0;
    border-bottom: none;
  }

  .dropdown-menu li a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  /* Get Quote button in nav: full width pill */
  nav ul li a.btn.btn-primary {
    margin: 12px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    border-radius: 100px;
    padding: 14px 24px;
  }

  /* â”€â”€ HERO â”€â”€ */
  .hero {
    padding: 0;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 50px 4% 40px;
    gap: 36px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-desc {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto 28px;
    max-width: 480px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    text-align: center;
    margin-bottom: 18px;
  }

  /* Buttons: full width on mobile */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }

  /* Stats row: 2x2 grid */
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 340px;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .hero-stat {
    padding: 16px 12px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-stat:nth-child(even) {
    border-right: none;
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  /* Hero visual card: hide on very small screens, show simplified */
  .hero-visual {
    display: none;
  }

  .hero-card-glow {
    display: none;
  }

  /* Trusted strip */
  .hero-trusted-strip {
    flex-direction: column;
    gap: 10px;
    padding: 16px 5% 20px;
  }

  .trusted-label {
    font-size: 0.75rem;
  }

  .trusted-badges {
    gap: 8px;
    justify-content: center;
  }

  .city-badge {
    padding: 4px 10px;
    font-size: 0.78rem;
  }

  /* â”€â”€ SECTIONS â”€â”€ */
  .section {
    padding: 60px 0;
  }

  .section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* â”€â”€ SERVICES â”€â”€ */
  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4px;
  }

  .service-card-premium {
    padding: 28px 22px;
  }

  .scp-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

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

  .service-card-premium p {
    font-size: 0.92rem;
  }

  /* â”€â”€ BENTO STATS â”€â”€ */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bento-big {
    grid-column: 1 / 3;
  }

  .bento-wide {
    grid-column: 1 / 3;
  }

  .bento-card {
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .bento-num {
    font-size: 2.6rem;
  }

  .bento-big .bento-num {
    font-size: 3.6rem;
  }

  .bento-plus {
    font-size: 0.55em;
  }

  .bento-label {
    font-size: 0.95rem;
  }

  .bento-sub {
    font-size: 0.82rem;
  }

  .bento-bg-icon {
    font-size: 4.5rem;
  }

  .bento-big .bento-bg-icon {
    font-size: 6rem;
  }

  /* â”€â”€ WHY SECTION â”€â”€ */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-left h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    margin: 12px 0 16px;
  }

  .why-features {
    gap: 14px;
  }

  .why-feature {
    padding: 16px;
    gap: 12px;
  }

  .wf-icon {
    font-size: 1.5rem;
  }

  .why-feature strong {
    font-size: 0.95rem;
  }

  .why-feature p {
    font-size: 0.86rem;
  }

  /* Process timeline â€” mobile horizontal scroll or compact stack */
  .process-timeline {
    gap: 0;
  }

  .pt-step {
    padding: 20px 0 20px 24px;
    margin-left: 16px;
    gap: 12px;
  }

  .pt-num {
    width: 32px;
    height: 32px;
    left: -16px;
    font-size: 0.78rem;
    top: 18px;
  }

  .pt-content strong {
    font-size: 0.95rem;
  }

  .pt-content p {
    font-size: 0.84rem;
  }

  /* â”€â”€ TECH STACK â”€â”€ */
  .tech-grid {
    gap: 10px;
    margin-top: 28px;
  }

  .tech-badge {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  /* â”€â”€ CASE STUDIES / PORTFOLIO â”€â”€ */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-card {
    border-radius: var(--radius-md);
  }

  .case-content {
    padding: 20px;
  }

  .case-content h3 {
    font-size: 1.1rem;
  }

  .case-content p {
    font-size: 0.88rem;
  }

  /* â”€â”€ TESTIMONIALS â”€â”€ */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .testi-text {
    font-size: 0.9rem;
  }

  .testi-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .quote-icon {
    font-size: 2.2rem;
    top: 20px;
    right: 24px;
  }

  /* â”€â”€ FAQ â”€â”€ */
  .faq-question {
    padding: 18px 16px;
    font-size: 0.92rem;
    gap: 12px;
  }

  .faq-question span {
    font-size: 1.3rem;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 0.9rem;
  }

  /* â”€â”€ CTA BAND â”€â”€ */
  .cta-band {
    padding: 50px 0;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
    width: 90%;
  }

  .cta-band h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 6px;
  }

  .cta-band p {
    font-size: 0.95rem;
  }

  .cta-band-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
  }

  .cta-band-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-logo {
    height: 44px;
    margin-bottom: 14px;
  }

  .footer-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .footer-widget p {
    font-size: 0.9rem;
  }

  .footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 20px;
  }

  /* â”€â”€ WHATSAPP FLOAT â”€â”€ */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* â”€â”€ INNER PAGE HEADERS â”€â”€ */
  .page-header {
    padding: 56px 0 40px;
  }

  .page-header h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
  }

  /* â”€â”€ CONTACT PAGE â”€â”€ */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .contact-info-card {
    padding: 20px;
  }

  .form-control {
    padding: 12px 14px;
    font-size: 15px;
  }

  /* â”€â”€ CONTENT ROW (col-6 / row) â”€â”€ */
  .row {
    gap: 32px;
  }

  .col-6 {
    flex: 1 1 100%;
  }

  .content-box h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .content-box p {
    font-size: 1rem;
  }

  .content-box ul {
    padding: 22px;
  }

  .content-box ul li {
    font-size: 0.95rem;
    padding-left: 28px;
    margin-bottom: 12px;
  }

  /* â”€â”€ BREADCRUMB â”€â”€ */
  .breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }

  /* â”€â”€ BUTTONS GLOBAL â”€â”€ */
  .btn {
    padding: 13px 24px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {

  .container {
    width: 92%;
  }

  /* Hero further compact */
  .hero-container {
    padding: 40px 3% 32px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .hero-btns {
    max-width: 300px;
  }

  .hero-btns .btn {
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-stats-row {
    max-width: 300px;
  }

  /* Section headings */
  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-title {
    margin-bottom: 28px;
  }

  /* Bento: 1 column on small mobile */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bento-big,
  .bento-wide {
    grid-column: 1;
  }

  .bento-num {
    font-size: 2.4rem;
  }

  .bento-big .bento-num {
    font-size: 3.2rem;
  }

  .bento-card {
    padding: 20px;
  }

  /* Services: single col, compact */
  .service-card-premium {
    padding: 22px 18px;
  }

  /* Why features */
  .why-feature {
    flex-direction: column;
    gap: 10px;
  }

  .wf-icon {
    font-size: 1.8rem;
  }

  /* Tech badges wrap tighter */
  .tech-badge {
    padding: 7px 13px;
    font-size: 0.78rem;
  }

  /* Testimonials */
  .testi-card {
    padding: 20px 16px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.88rem;
    padding: 15px 14px;
  }

  .faq-answer {
    padding: 0 14px 16px;
    font-size: 0.87rem;
  }

  /* Footer: compact */
  .footer-grid {
    gap: 24px;
  }

  .footer-logo {
    height: 38px;
  }

  /* CTA */
  .cta-band {
    padding: 40px 0;
  }

  .cta-band h2 {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .cta-band-actions {
    max-width: 260px;
  }

  /* Contact form */
  .contact-form {
    padding: 20px 14px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  /* Breadcrumb hide on tiny screens */
  .breadcrumb-container {
    padding: 10px 0;
  }

  /* Page header */
  .page-header {
    padding: 44px 0 32px;
  }

  .page-header h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
}

@media (max-width: 400px) {

  .container {
    width: 90%;
  }

  /* Header */
  .logo-img {
    height: 32px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  /* Hero */
  .hero-container {
    padding: 32px 3% 28px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 10vw, 2.1rem);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .hero-btns {
    max-width: 100%;
  }

  .hero-btns .btn {
    font-size: 13px;
    padding: 12px 16px;
  }

  .hero-stats-row {
    max-width: 100%;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

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

  /* Cards compact */
  .service-card-premium {
    padding: 18px 14px;
  }

  .bento-card {
    padding: 16px;
  }

  .testi-card {
    padding: 18px 14px;
  }

  .case-content {
    padding: 16px 14px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.85rem;
    padding: 13px 12px;
  }

  .faq-answer {
    font-size: 0.84rem;
    padding: 0 12px 14px;
  }

  /* Footer */
  .footer-grid {
    gap: 20px;
  }

  .footer-widget h4 {
    font-size: 1rem;
  }

  .footer-links li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

/* Disable hover transforms on touch devices (prevents sticky hover) */
@media (hover: none) {

  .card:hover,
  .service-card-premium:hover,
  .bento-card:hover,
  .why-feature:hover,
  .case-card:hover,
  .testi-card:hover,
  .tech-badge:hover,
  .contact-info-card:hover,
  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-primary:hover {
    box-shadow: 0 0 20px rgba(197, 155, 63, 0.3);
  }

  .btn-glow:hover {
    box-shadow: 0 0 30px rgba(197, 155, 63, 0.4), 0 0 60px rgba(197, 155, 63, 0.15);
  }
}

/* Active states for touch (better tap feedback) */
@media (hover: none) {
  .service-card-premium:active {
    border-color: var(--accent-blue);
    transform: scale(0.99);
  }

  .btn:active {
    transform: scale(0.97);
  }

  .faq-question:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav ul li a:active {
    color: var(--accent-cyan);
  }
}

/* Landscape phone â€” fix hero height */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 30px 5%;
    gap: 24px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats-row {
    margin-top: 16px;
  }

  .hero-btns .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Tablet landscape â€” nav always visible (not hamburger) */
@media (min-width: 900px) {
  .mobile-menu-btn {
    display: none !important;
  }

  nav>ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    overflow: visible;
    max-height: none;
  }

  nav>ul>li {
    width: auto;
    border: none;
  }

  nav>ul>li>a {
    padding: 0;
    min-height: unset;
  }
}

/* Print styles (bonus) */
@media print {

  header,
  footer,
  .whatsapp-float,
  .hero-orb,
  .hero-grid-bg,
  .cta-band {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
  }

  a {
    color: black;
  }
}



/* Premium Icons Styling */
.premium-icon {
  font-size: 1.2em;
  vertical-align: text-bottom;
  color: var(--accent-blue);
  margin: 0 4px;
  display: inline-block;
}


/* =========================================================
   LIGHT MODE OVERRIDES
   ========================================================= */
[data-theme="light"] {
  --bg-primary: #fafcff;
  --bg-secondary: #f0f4f8;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 40px rgba(197, 155, 63, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);
}


/* =========================================================
   UI FIXES FOR LIGHT MODE
   ========================================================= */
[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .form-control {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .form-control:focus {
  background: #ffffff;
}


/* =========================================================
   PREMIUM FEATURE CARDS (Upgraded UI)
   ========================================================= */
.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(197, 155, 63, 0.15);
  border-color: rgba(197, 155, 63, 0.3);
}

.premium-feature-card:hover::before {
  opacity: 1;
}

.premium-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(197, 155, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(197, 155, 63, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.premium-feature-card:hover .premium-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-accent);
  box-shadow: 0 10px 20px rgba(197, 155, 63, 0.3);
}

.premium-feature-card:hover .premium-feature-icon i {
  color: #fff;
}

.premium-feature-icon i {
  font-size: 32px;
  color: var(--accent-blue);
  transition: color 0.3s ease;
}

.premium-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.premium-feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Light Mode Overrides for Premium Cards */
[data-theme="light"] .premium-feature-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .premium-feature-card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04), 0 0 30px rgba(197, 155, 63, 0.1);
}

/* =========================================================
   EXTENDED PREMIUM CARDS (Applying to all existing cards)
   ========================================================= */
.services-grid,
.benefits-grid,
.tech-stack-grid,
.case-studies-grid,
.pricing-grid,
.grid-3,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card,
.benefit-box,
.feature-box,
.pricing-card,
.contact-info-card,
.card,
.case-card,
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.service-card::before,
.benefit-box::before,
.feature-box::before,
.pricing-card::before,
.contact-info-card::before,
.card::before,
.case-card::before,
.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover,
.benefit-box:hover,
.feature-box:hover,
.pricing-card:hover,
.contact-info-card:hover,
.card:hover,
.case-card:hover,
.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(197, 155, 63, 0.15);
  border-color: rgba(197, 155, 63, 0.3);
}

.service-card:hover::before,
.benefit-box:hover::before,
.feature-box:hover::before,
.pricing-card:hover::before,
.contact-info-card:hover::before,
.card:hover::before,
.case-card:hover::before,
.stat-box:hover::before {
  opacity: 1;
}

.service-icon,
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(197, 155, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(197, 155, 63, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon,
.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-accent);
  box-shadow: 0 10px 20px rgba(197, 155, 63, 0.3);
}

.service-card:hover .service-icon i,
.card:hover .card-icon i {
  color: #fff !important;
}

/* Light Mode Overrides */
[data-theme="light"] .service-card,
[data-theme="light"] .benefit-box,
[data-theme="light"] .feature-box,
[data-theme="light"] .pricing-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .card,
[data-theme="light"] .case-card,
[data-theme="light"] .stat-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .benefit-box:hover,
[data-theme="light"] .feature-box:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .contact-info-card:hover,
[data-theme="light"] .card:hover,
[data-theme="light"] .case-card:hover,
[data-theme="light"] .stat-box:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04), 0 0 30px rgba(197, 155, 63, 0.1);
}

/* Fix for DevOps section layout to span full width and arrange cards in sequence */
.tech-stack-grid .tech-category:last-child {
  grid-column: 1 / -1;
}

/* =========================================================
   MINI CARDS (For nested features inside pricing cards)
   ========================================================= */
.pricing-card .premium-feature-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing-card .premium-feature-card {
  padding: 12px 16px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transform: none !important;
  /* disable hover lift for nested cards */
}

.pricing-card .premium-feature-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.pricing-card .premium-feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  border-radius: 8px;
}

.pricing-card .premium-feature-icon i {
  font-size: 16px;
}

.pricing-card .premium-feature-card h3 {
  font-size: 14px;
  margin: 0;
}

.pricing-card .premium-feature-card p {
  display: none;
  /* Hide the broken p tag text if it exists */
}

.mini-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 63, 0.08);
  border-color: rgba(197, 155, 63, 0.2);
}

.mini-icon {
  color: var(--secondary-accent);
  font-size: 18px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
}
.portfolio-item.hidden {
  display: none !important;
}

/* Portfolio Layout & Filtering */
.portfolio-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }
}
.portfolio-sidebar {
  position: sticky;
  top: 120px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.portfolio-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make Cards Fully Clickable */
.service-card-premium, 
.case-card, 
.portfolio-item, 
.service-card, 
.bento-card { 
  position: relative; 
}
.service-card-premium a::after, 
.case-card a::after, 
.portfolio-item a::after, 
.service-card a::after, 
.bento-card a::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  z-index: 10; 
  cursor: pointer; 
}

/* Mobile Service Cards Layout */
@media (max-width: 768px) {
  .grid-3:has(.service-card-premium) {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .service-card-premium {
    padding: 20px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 120px !important;
  }
  .service-card-premium .scp-icon {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
  .service-card-premium h3 {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  .service-card-premium p {
    display: none !important;
  }
  .service-card-premium .scp-link,
  .service-card-premium .learn-more {
    font-size: 0 !important;
    color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    display: block !important;
  }
}

/* Mobile Service Cards Layout FIX */
@media (max-width: 768px) {
  .services-grid-premium {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* Remove the + / x icon from FAQ questions */
.faq-question span {
  display: none !important;
}

/* Mobile Portfolio Filter Layout */
@media (max-width: 768px) {
  .portfolio-sidebar {
    top: 60px !important; /* Just below header */
    padding: 16px 16px 8px !important;
    background: rgba(4, 8, 18, 0.85) !important;
    border: none !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    border-radius: 0 !important;
    margin: 0 -5% 24px -5% !important; /* Break out of container padding to go full width */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }
  
  .portfolio-sidebar h3 {
    display: none !important;
  }
  
  .filter-list {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px !important;
    padding-bottom: 0px;
  }
  
  .filter-list::-webkit-scrollbar {
    display: none;
  }
  
  .filter-btn {
    white-space: nowrap;
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }
}

/* Mobile Portfolio Cards Layout */
@media (max-width: 768px) {
  .grid-3:has(.portfolio-item) {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }
  .portfolio-item {
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }
  .portfolio-item img {
    margin-bottom: 10px !important;
    border-radius: 6px !important;
  }
  .portfolio-item h3 {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
  }
  .portfolio-item p {
    display: none !important;
  }
  .portfolio-item .read-more {
    font-size: 0 !important;
    color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    display: block !important;
  }
}

/* Custom Content Card & Grid Styles */
.content-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--accent-blue);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .content-card {
    padding: 24px; /* Reduced padding on mobile */
  }
  .content-grid {
    grid-template-columns: 1fr; /* Force 1 column on mobile to prevent overflow */
    gap: 24px;
  }
}

/* Header Get Quote Button Logic */
.header-get-quote {
  display: inline-flex;
  order: 2;
}
.header-container nav {
  margin-left: auto !important;
}
.header-container .header-actions {
  margin-left: 30px !important;
}
.nav-get-quote {
  display: none !important;
}

@media (max-width: 992px) {
  .header-get-quote {
    display: none !important;
  }
  .nav-get-quote {
    display: inline-block !important; 
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}
