/*
Theme Name: Primedconsults 3D Portfolio
Theme URI: https://primedconsults.com
Author: Primedconsults Team
Author URI: https://primedconsults.com
Description: High-performance 3D canvas scroll animation digital marketing portfolio theme with dynamic JSON data support, Poppins and Space Grotesk typography, and glassmorphism UI.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: primedconsults
Tags: portfolio, 3d-animation, digital-marketing, dark-theme, responsive-layout
*/

/* Custom CSS Styles */
:root {
  --bg-dark: #070709;
  --accent-gold: #F7AA27;
  --accent-yellow: #F7AA27;
  --accent-amber: #e09612;
  --accent-gradient: linear-gradient(135deg, #F7AA27 0%, #ffbe4d 50%, #e09612 100%);
  --glass-bg: rgba(15, 17, 23, 0.75);
  --glass-bg-hover: rgba(24, 28, 38, 0.88);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-gold: rgba(247, 170, 39, 0.4);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.5);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Fixed Viewport Canvas Animation Container */
.canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

canvas {
  width: 100vw;
  height: 100vh;
  display: block;
}

/* Minimalist Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070709;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.loader-title span {
  color: var(--accent-yellow);
}

.loader-bar-bg {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  transition: width 0.1s linear;
}

/* Frame Badge Counter */
#frameCounter {
  position: fixed;
  top: 84px;
  right: 24px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  z-index: 90;
  font-family: monospace;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Header / Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-right: 40px;
}

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

.brand-text span {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-yellow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--accent-yellow);
}

.phone-icon {
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(247, 170, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #ffbe4d;
  box-shadow: 0 6px 25px rgba(247, 170, 39, 0.55);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0d0d0d;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(247, 170, 39, 0.08);
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--glass-border-gold);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline-gold:hover {
  background: rgba(247, 170, 39, 0.18);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

/* Content Overlay Structure */
.content-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  pointer-events: auto;
}

/* Common Section Utilities */
section {
  padding: 90px 0 50px 0;
  position: relative;
}

.badge-tag {
  display: inline-block;
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-title span {
  color: var(--accent-yellow);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.65;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 170, 39, 0.12);
  border: 1px solid var(--glass-border-gold);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent-yellow);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.hero-stat-item .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero-card-display {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-logo-large {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 20px rgba(247, 170, 39, 0.3));
}

.rating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Marquee Ticker Ribbon */
.ticker-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: var(--accent-yellow);
  color: #000000;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
}

.ticker-item span {
  margin-left: 30px;
  font-weight: 800;
}

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

/* Services Section */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.icon-orange { background: #f97316; }
.icon-blue { background: #0284c7; }
.icon-red { background: #ef4444; }
.icon-pink { background: #ec4899; }
.icon-purple { background: #a855f7; }
.icon-amber { background: #d97706; }
.icon-coral { background: #f43f5e; }
.icon-gold { background: #F7AA27; }
.icon-navy { background: #3b82f6; }
.icon-green { background: #10b981; }
.icon-cyan { background: #06b6d4; }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.all-services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  margin-top: 36px;
  transition: gap 0.2s ease;
}

.all-services-link:hover {
  gap: 12px;
}

/* Promo Box */
.promo-box {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-gold);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}

.promo-header {
  max-width: 680px;
  margin: 0 auto 32px auto;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.timer-block {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border-gold);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 90px;
}

.timer-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-yellow);
  line-height: 1;
}

.timer-lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 1px;
}

.promo-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.promo-feat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.promo-cta-card {
  background: var(--accent-yellow);
  border-radius: 20px;
  padding: 40px;
  color: #000000;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-cta-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.promo-cta-desc {
  font-size: 0.925rem;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}

.promo-cta-checks {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #000000;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-media-card {
  background: var(--accent-yellow);
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(247, 170, 39, 0.25);
}

.about-media-card img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(15, 17, 23, 0.95);
  border: 1px solid var(--glass-border-gold);
  padding: 16px 24px;
  border-radius: 16px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.exp-badge span {
  color: var(--accent-yellow);
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 24px 0 32px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-icon {
  color: var(--accent-yellow);
  font-weight: 700;
}

/* Metrics Banner */
.metrics-banner {
  background: var(--accent-yellow);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0 60px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #000000;
  box-shadow: 0 15px 45px rgba(247, 170, 39, 0.3);
}

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

.metric-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.stars {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.quote-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.client-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

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

/* Contact Form Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-form-box {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
}

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

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

.form-input, .form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
}

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

.btn-submit {
  width: 100%;
  background: var(--accent-yellow);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #ffbe4d;
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-card {
  margin: 60px 0;
  background: var(--accent-yellow);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #000000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(247, 170, 39, 0.3);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000000;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.85);
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid #000000;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cta-whatsapp:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(16px);
  padding: 60px 0 30px 0;
}

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

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  background: rgba(247, 170, 39, 0.1);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-item-icon {
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
}

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

/* Create Amazing Project Section */
.create-project-section {
  text-align: center;
  padding: 90px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.create-project-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 32px;
}

.create-project-title span {
  color: var(--accent-yellow);
}

.create-project-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-create-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1e3527;
  border: 1px solid rgba(247, 170, 39, 0.45);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 10px 8px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-create-contact:hover {
  transform: translateY(-3px);
  background: #274734;
  border-color: var(--accent-yellow);
}

.btn-arrow-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.btn-create-contact:hover .btn-arrow-circle {
  transform: translateX(3px);
}

.scattered-services-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 12px 14px;
  padding: 20px 0 10px 0;
  margin-top: 10px;
}

.service-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.service-tag:hover {
  transform: scale(1.1) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(247, 170, 39, 0.3);
}

.tag-gold {
  background: var(--accent-yellow);
  color: #000000;
}

.tag-dark {
  background: #1e3527;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Organic Scattered Rotations */
.rot-neg-8 { transform: rotate(-8deg); }
.rot-neg-7 { transform: rotate(-7deg); }
.rot-neg-6 { transform: rotate(-6deg); }
.rot-neg-5 { transform: rotate(-5deg); }
.rot-neg-4 { transform: rotate(-4deg); }
.rot-neg-3 { transform: rotate(-3deg); }
.rot-pos-3 { transform: rotate(3deg); }
.rot-pos-4 { transform: rotate(4deg); }
.rot-pos-5 { transform: rotate(5deg); }
.rot-pos-6 { transform: rotate(6deg); }
.rot-pos-7 { transform: rotate(7deg); }
.rot-pos-8 { transform: rotate(8deg); }

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-banner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title, .hero-title { font-size: 2.3rem; }
}

@media (max-width: 640px) {
  .nav-links, .phone-link { display: none; }
  .services-grid, .testimonials-grid, .metrics-banner, .footer-grid, .about-checklist { grid-template-columns: 1fr; }
  .section-title, .hero-title, .cta-title { font-size: 1.9rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-dark, .btn-cta-whatsapp { width: 100%; }
  .metrics-banner { padding: 30px 20px; }
  .promo-cta-card { flex-direction: column; text-align: center; }
}
