/* ==========================================================================
   Ainwik Infotech - Modern Corporate Stylesheet
   Theme: Midnight Navy (#070b1e) & Golden Yellow (#f5b800)
   ========================================================================== */

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

:root {
  --bg-dark: #070b1e;
  --bg-darker: #040612;
  --bg-surface: #0c1538;
  --bg-surface-elevated: #111d4e;
  --bg-card: rgba(13, 22, 58, 0.75);
  --bg-card-hover: rgba(20, 34, 88, 0.9);
  
  --accent-gold: #f5b800;
  --accent-gold-light: #ffca28;
  --accent-gold-dark: #d99b00;
  --accent-gold-glow: rgba(245, 184, 0, 0.3);
  --accent-gold-subtle: rgba(245, 184, 0, 0.12);
  
  --primary-blue: #142259;
  --secondary-blue: #1c2e78;
  --electric-blue: #3b82f6;
  --electric-cyan: #06b6d4;
  --success-green: #10b981;
  
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-glass: rgba(245, 184, 0, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(245, 184, 0, 0.45);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(245, 184, 0, 0.25);
  --shadow-glow-lg: 0 0 50px rgba(245, 184, 0, 0.35);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 184, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(20, 34, 89, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(245, 184, 0, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities & Gradients */
.text-gold {
  color: var(--accent-gold);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-gold-subtle);
  color: var(--accent-gold);
  border: 1px solid var(--border-glass);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Section Common Styling */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: var(--bg-darker);
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lg);
  background: linear-gradient(135deg, #ffe082 0%, var(--accent-gold-light) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold-subtle);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 11, 30, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7, 11, 30, 0.95);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245, 184, 0, 0.4));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: rotate(10deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-title span {
  color: var(--accent-gold);
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-count-badge {
  background: var(--accent-gold);
  color: var(--bg-darker);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

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

.dropdown-chevron {
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown.dropdown-open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  width: 720px;
  background: rgba(10, 16, 44, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-card), 0 0 35px rgba(245, 184, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.has-dropdown:hover .dropdown-menu.mega-menu,
.has-dropdown.dropdown-open .dropdown-menu.mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.dropdown-header-info {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dropdown-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.dropdown-view-all:hover {
  background: var(--accent-gold);
  color: var(--bg-darker);
  transform: translateX(3px);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.dropdown-item:hover {
  background: rgba(20, 34, 88, 0.75);
  border-color: var(--border-glass);
  transform: translateX(4px);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.dropdown-item:hover .dropdown-item-icon {
  background: var(--accent-gold);
  color: var(--bg-darker);
  transform: scale(1.08);
}

.dropdown-item-icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dropdown-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--accent-gold);
}

.dropdown-item-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-item:hover .dropdown-item-sub {
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 10rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 480px;
  background: radial-gradient(circle, rgba(20, 34, 89, 0.8) 0%, rgba(7, 11, 30, 0.9) 70%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.hero-center-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(13, 21, 56, 0.9);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 35px var(--accent-gold-glow);
  animation: floatLogo 4s ease-in-out infinite;
  object-fit: contain;
}

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

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(13, 21, 56, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 600;
  animation: floatChip 5s ease-in-out infinite alternate;
}

.floating-chip i, .floating-chip svg {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

.chip-1 { top: 25px; left: -20px; animation-delay: 0s; }
.chip-2 { top: 35px; right: -20px; animation-delay: 1s; }
.chip-3 { bottom: 100px; left: -30px; animation-delay: 2s; }
.chip-4 { bottom: 30px; right: -15px; animation-delay: 1.5s; }

@keyframes floatChip {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

.tech-ticker-wrap {
  margin-top: 4.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(13, 21, 56, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 700;
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid var(--border-subtle);
}

.ticker-slider {
  display: flex;
  gap: 2.5rem;
  padding-left: 2rem;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ticker-item span {
  color: var(--accent-gold);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Services Section (12 Services)
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #090f2b 50%, var(--bg-dark) 100%);
  position: relative;
}

.services-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: rgba(13, 21, 56, 0.6);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: var(--accent-gold);
  color: var(--bg-darker);
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.service-search-box {
  position: relative;
  min-width: 260px;
}

.service-search-box input {
  width: 100%;
  background: rgba(7, 11, 30, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.service-search-box input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.service-search-box svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 25px rgba(245, 184, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-gold);
  color: var(--bg-darker);
}

.service-index {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dim);
  border: 1px solid var(--border-subtle);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-index {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-feature-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--text-muted);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-explore-btn {
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s ease;
}

.service-explore-btn:hover {
  gap: 0.7rem;
  color: var(--accent-gold-light);
}

/* ==========================================================================
   What We Do Section
   ========================================================================== */
.what-we-do-section {
  position: relative;
  background: var(--bg-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 5rem;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(245, 184, 0, 0.2);
  margin-bottom: 1rem;
  display: block;
}

.process-card:hover .process-step-num {
  color: var(--accent-gold);
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.process-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Industries Matrix */
.industries-box {
  background: linear-gradient(135deg, rgba(13, 21, 56, 0.8) 0%, rgba(20, 34, 88, 0.5) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.industries-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: rgba(7, 11, 30, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  background: rgba(13, 21, 56, 0.9);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.industry-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.why-title {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

/* ==========================================================================
   Interactive Project Cost & Scope Estimator
   ========================================================================== */
.estimator-section {
  background: linear-gradient(180deg, #090f2b 0%, var(--bg-dark) 100%);
  position: relative;
}

.estimator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
}

.estimator-step {
  margin-bottom: 2rem;
}

.estimator-step-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.estimator-step-label span {
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  color: var(--bg-darker);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem;
}

.option-card {
  background: rgba(7, 11, 30, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.option-card:hover {
  border-color: var(--accent-gold);
  background: rgba(13, 21, 56, 0.8);
}

.option-card.active {
  background: var(--accent-gold-subtle);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.estimator-summary-panel {
  background: rgba(7, 11, 30, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.summary-row .label {
  color: var(--text-muted);
}

.summary-row .val {
  color: var(--text-white);
  font-weight: 600;
}

.estimate-output-box {
  margin: 1.5rem 0;
  padding: 1.2rem;
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: center;
}

.estimate-price-range {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.estimate-timeline {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  position: relative;
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.about-badge-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.about-badge-card h4 {
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.about-badge-card p {
  font-size: 0.85rem;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
}

.vision-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.vision-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Contact Us Section
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, #090f2b 0%, var(--bg-darker) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-glass);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold-subtle);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-detail p, .contact-detail a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-detail a:hover {
  color: var(--accent-gold);
}

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

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(7, 11, 30, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: var(--text-white);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

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

/* FAQ Accordion */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-glass);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

/* ==========================================================================
   Service Details Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card), var(--shadow-glow-lg);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-gold);
  color: var(--bg-darker);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--accent-gold);
  color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal-body h4 {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin: 1.5rem 0 0.8rem 0;
}

.modal-body ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.modal-body li {
  list-style: disc;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 1.2rem 0 1.5rem 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-darker);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(7, 11, 30, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.1rem;
  color: var(--text-white);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--text-white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  transform: translateX(0);
}

/* Floating Quick Action */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: var(--bg-darker);
  transform: translateY(-4px);
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Desktop, Tablet & Mobile)
   ========================================================================== */

/* Large Tablets & Small Laptops (<= 1100px) */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 780px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

/* Tablets & Mobile Screens (<= 900px) */
@media (max-width: 900px) {
  .nav-container {
    height: 74px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(5, 9, 26, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.2rem 3rem 1.2rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-glass);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active, .nav-link:hover {
    background: var(--accent-gold-subtle);
    border-color: var(--border-glass);
    color: var(--accent-gold);
  }

  .has-dropdown {
    width: 100%;
  }

  .dropdown-menu.mega-menu {
    position: static;
    transform: none !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    background: rgba(10, 16, 44, 0.6);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .has-dropdown.dropdown-open .dropdown-menu.mega-menu {
    max-height: 1200px;
    padding: 0.8rem 0.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
  }

  .dropdown-header {
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .dropdown-item {
    padding: 0.6rem 0.75rem;
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
  }

  .header-actions .btn {
    display: none;
  }

  .hero-section {
    padding: 7rem 0 4rem 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
  }

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

  .stat-item {
    background: rgba(13, 21, 56, 0.4);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    text-align: center;
  }

  .hero-graphic-box {
    max-width: 360px;
    height: 380px;
    padding: 1.5rem;
  }

  .hero-center-logo {
    width: 120px;
    height: 120px;
  }

  .floating-chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }

  .chip-1 { top: 15px; left: 0px; }
  .chip-2 { top: 15px; right: 0px; }
  .chip-3 { bottom: 65px; left: 0px; }
  .chip-4 { bottom: 15px; right: 0px; }

  .services-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .filter-pills {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  .service-search-box {
    width: 100%;
  }

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

  .industries-box {
    padding: 2rem 1.2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .why-grid, .about-vision-grid {
    grid-template-columns: 1fr;
  }

  .estimator-box {
    padding: 1.5rem;
  }

  .estimator-summary-panel {
    padding: 1.5rem;
  }

  .option-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .option-card {
    padding: 0.75rem 0.6rem;
    font-size: 0.82rem;
  }

  .contact-form-box {
    padding: 1.8rem 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
  }

  .modal-content {
    padding: 1.8rem 1.2rem;
    max-height: 88vh;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1.6rem 1.2rem;
  }

  .about-badge-list {
    grid-template-columns: 1fr;
  }

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

  .floating-whatsapp {
    bottom: 1.2rem;
    left: 1.2rem;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
  }
}

