/* ==========================================================================
   DIGILOOM - DIGITAL AGENCY OFFICIAL STYLESHEET
   Brand Identity: Dark, Sleek, Tech-Forward (#1A1A1A & #00FFBC Accent)
   ========================================================================== */

/* --------------------------------------------------------------------------
   GILMER FONT DECLARATIONS (@font-face)
   Expected files in /fonts/ directory: .woff2 with .woff fallback
   -------------------------------------------------------------------------- */

/* Gilmer Light - Weight 300 */
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/gilmer-light.woff2') format('woff2'),
       url('/fonts/gilmer-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Gilmer Regular - Weight 400 */
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/gilmer-regular.woff2') format('woff2'),
       url('/fonts/gilmer-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Gilmer Medium - Weight 500 */
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/gilmer-medium.woff2') format('woff2'),
       url('/fonts/gilmer-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gilmer Bold - Weight 700 */
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/gilmer-bold.woff2') format('woff2'),
       url('/fonts/gilmer-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gilmer Heavy - Weight 800 */
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/gilmer-heavy.woff2') format('woff2'),
       url('/fonts/gilmer-heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (THEME VARIABLES)
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #1A1A1A;
  --bg-secondary: #232323;
  --bg-card: #232323;
  --bg-card-hover: #2A2A2A;
  --bg-input: #151515;
  
  --accent-mint: #00FFBC;
  --accent-mint-hover: #00E0A7;
  --accent-mint-glow: rgba(0, 255, 188, 0.22);
  --accent-mint-soft: rgba(0, 255, 188, 0.08);

  --text-primary: #F5F5F5;
  --text-headline: #FFFFFF;
  --text-muted: #9A9A9A;
  --text-dark: #121212;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-mint: rgba(0, 255, 188, 0.35);

  --font-family: 'Gilmer', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1280px;
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

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

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Focus outline for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-mint);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-headline);
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.25rem);
}

h2 {
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
}

h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
}

h4 {
  font-weight: 700;
  font-size: 1.2rem;
}

p {
  color: var(--text-primary);
  font-weight: 400;
}

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

.text-mint {
  color: var(--accent-mint);
}

/* --------------------------------------------------------------------------
   LAYOUT CONTAINERS & UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--accent-mint-soft);
  border: 1px solid var(--border-mint);
  color: var(--accent-mint);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-mint);
  box-shadow: 0 0 10px var(--accent-mint);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-mint {
  background-color: var(--accent-mint);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 255, 188, 0.25);
}

.btn-mint:hover {
  background-color: var(--accent-mint-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 188, 0.4);
}

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

.btn-outline-mint:hover {
  background-color: var(--accent-mint-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 188, 0.2);
}

.btn-dark {
  background-color: #111111;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background-color: #000000;
  border-color: var(--accent-mint);
  color: var(--accent-mint);
}

.btn-large {
  padding: 1.15rem 2.25rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   STICKY NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-fast), padding var(--transition-fast);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(20, 20, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link:hover {
  color: var(--accent-mint);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-headline);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 188, 0.12) 0%, rgba(26, 26, 26, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.hero-shape-1 {
  width: 320px;
  height: 320px;
  background: var(--accent-mint);
  top: 10%;
  right: -50px;
  animation: float 8s ease-in-out infinite alternate;
}

.hero-shape-2 {
  width: 280px;
  height: 280px;
  background: #008f6b;
  bottom: 10%;
  left: -80px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--accent-mint);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

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

.trust-item svg {
  color: var(--accent-mint);
}

/* --------------------------------------------------------------------------
   SERVICES SECTION (7 Cards)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-card-hover);
  border-color: var(--border-mint);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-mint-glow);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-color: var(--accent-mint-soft);
  border: 1px solid var(--border-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  background-color: var(--accent-mint);
  color: var(--text-dark);
}

.service-title {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-mint);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 0.75rem;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-mint);
}

.why-number {
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-mint);
  line-height: 1;
  background: var(--accent-mint-soft);
  border: 1px solid var(--border-mint);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.why-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.countries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-headline);
  border-color: var(--border-mint);
}

.filter-btn.active {
  background-color: var(--accent-mint);
  color: var(--text-dark);
  border-color: var(--accent-mint);
  box-shadow: 0 4px 16px rgba(0, 255, 188, 0.25);
}

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

.portfolio-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-mint);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #121212;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-mint);
  border: 1px solid var(--border-mint);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-info {
  padding: 1.75rem;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Hide filtered items */
.portfolio-card.is-hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   PROCESS SECTION (4 Steps)
   -------------------------------------------------------------------------- */
.process-wrapper {
  position: relative;
  margin-top: 2rem;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-mint), rgba(0, 255, 188, 0.2));
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
}

.process-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-mint);
  box-shadow: 0 0 20px var(--accent-mint-glow);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.process-step:hover .process-node {
  transform: scale(1.1);
  background-color: var(--accent-mint);
  color: var(--text-dark);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   STATS BAR (Full-Width Mint Band)
   -------------------------------------------------------------------------- */
.stats-band {
  background-color: var(--accent-mint);
  color: var(--text-dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-number {
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #111111;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS SECTION (Carousel)
   -------------------------------------------------------------------------- */
.testimonials-carousel {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3.5rem 3rem 3rem 3rem;
  position: relative;
  text-align: center;
  transition: opacity var(--transition-smooth);
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

.quote-icon {
  font-size: 3.5rem;
  color: var(--accent-mint);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent-mint);
  object-fit: cover;
}

.client-details {
  text-align: left;
}

.client-name {
  font-weight: 700;
  color: var(--text-headline);
  font-size: 1.05rem;
}

.client-role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: var(--accent-mint);
  color: var(--text-dark);
  border-color: var(--accent-mint);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--accent-mint);
  width: 24px;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, #222222 0%, #151515 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 188, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 1.25rem;
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.whatsapp-highlight-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-mint);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px var(--accent-mint-soft);
  position: relative;
  overflow: hidden;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.whatsapp-number-display {
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--text-headline);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-cta-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.1rem;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: border-color var(--transition-fast);
}

.contact-info-item:hover {
  border-color: var(--border-mint);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--accent-mint-soft);
  border: 1px solid var(--border-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.contact-details a:hover {
  color: var(--accent-mint);
}

/* Form Styles */
.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.75rem;
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-headline);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-mint);
  box-shadow: 0 0 12px var(--accent-mint-glow);
  background-color: #1A1A1A;
}

.form-select option {
  background-color: #1A1A1A;
  color: var(--text-primary);
}

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

/* Form submission toast / status */
.form-status {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.success {
  display: block;
  background-color: rgba(0, 255, 188, 0.15);
  border: 1px solid var(--accent-mint);
  color: var(--accent-mint);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #121212;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

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

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.footer-link:hover {
  color: var(--accent-mint);
  transform: translateX(4px);
}

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

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent-mint);
  color: var(--text-dark);
  border-color: var(--accent-mint);
  transform: translateY(-3px);
}

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

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (Fixed Bottom-Right)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-mint);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 255, 188, 0.45);
  z-index: 999;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse-mint 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0, 255, 188, 0.65);
}

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

@keyframes pulse-mint {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 188, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 255, 188, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 188, 0);
  }
}

/* --------------------------------------------------------------------------
   INTERSECTION OBSERVER ANIMATION CLASSES
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES (Mobile-First)
   -------------------------------------------------------------------------- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .process-line {
    display: none;
  }

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

/* Mobile Medium (max-width: 768px) */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav-logo img {
    height: 28px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #141414;
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition-smooth);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none; /* Hide top CTA on mobile navbar to conserve space */
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

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

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .testimonial-slide {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

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

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

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

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