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

:root {
  --bg-color: #ffffff;
  --bg-secondary: #f4f6f9;
  --bg-card: #ffffff;
  --accent-purple: #2f295e;
  --accent-purple-hover: #413a82;
  --accent-purple-glow: rgba(47, 41, 94, 0.2);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
  --border-color: #eaeaea;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  padding-top: 5rem;
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
}

body::before {
  width: 50vw;
  height: 50vw;
  background: var(--accent-purple);
  opacity: 0.05;
  top: -10%;
  right: -10%;
}

body::after {
  width: 40vw;
  height: 40vw;
  background: var(--bg-secondary);
  opacity: 0.1;
  bottom: -10%;
  left: -10%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

html {
  font-size: 100%;
}

body {
  min-height: 100vh;
}

::selection {
  background: var(--accent-purple);
  color: #fff;
}

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

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

.glow-text {
  text-shadow: 0 0 20px var(--accent-purple-glow);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-purple-glow);
}

.btn-primary:hover {
  background-color: var(--accent-purple-hover);
  box-shadow: 0 0 30px var(--accent-purple-glow);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-color);
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

/* Service link styling */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.logo img:hover {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--accent-purple-glow));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-purple);
  transition: var(--transition);
}

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

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

.btn-audit {
  background-color: #000000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.btn-audit:hover {
  background-color: var(--accent-purple);
  box-shadow: 0 0 20px var(--accent-purple-glow);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.nav-links.active {
  display: flex;
}

.nav-links {
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  margin-top: 0;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, rgba(255, 255, 255, 0) 75%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-label {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  max-width: 13ch;
}

.hero-copy p {
  font-size: 1.15rem;
  max-width: 38rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  background: rgba(47, 41, 94, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(47, 41, 94, 0.08);
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-purple);
  margin-bottom: 0.4rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 255, 0.96));
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(47, 41, 94, 0.16);
  border: 1px solid rgba(47, 41, 94, 0.08);
}

.hero-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-card-meta {
  padding: 1.8rem;
}

.hero-card-meta .eyebrow {
  margin-bottom: 0.75rem;
  display: inline-block;
  color: var(--accent-purple);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card-meta h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.hero-frame {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(47, 41, 94, 0.16);
  border: 1px solid rgba(47, 41, 94, 0.1);
}

.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(47, 41, 94, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.hero-frame-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 22px;
}

.hero-frame-copy span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-purple);
}

.hero-frame-copy h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--text-primary);
}

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

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-purple);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: 0 24px 50px rgba(47, 41, 94, 0.08);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-purple);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background-color: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--accent-purple-glow), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(47, 41, 94, 0.1);
}

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

.service-icon {
  font-size: 3rem;
  color: var(--accent-purple);
  margin-bottom: 1.5rem;
}

/* Service Detail Layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.service-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(47, 41, 94, 0.1);
}

.service-copy h2 {
  margin-bottom: 1rem;
}

.service-copy a {
  margin-top: 1.5rem;
  display: inline-block;
}

/* Portfolio Grid */
.portfolio-clients,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(47, 41, 94, 0.08);
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.project-card-content {
  padding: 1.75rem;
}

.project-card-content h3 {
  margin-bottom: 0.75rem;
}

.project-card-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.project-card-content .btn {
  width: fit-content;
}

/* Footer */
footer {
  background: #0f1230;
  color: #e7e7ff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-brand p {
  color: #c5c7f0;
  max-width: 420px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-section {
    padding-top: 0.5rem;
  }
}


.footer-section h4 {
  margin-bottom: 1.5rem;
  color: #a98cff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.9rem;
}

.footer-section a {
  color: #d8d9f8;
  opacity: 0.85;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover,
.footer-section a.active {
  color: #ffffff;
  opacity: 1;
}

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

.social-links a {
  font-size: 1.1rem;
  color: #d8d9f8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9fa1c0;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .hero-copy p,
  .project-card-content p,
  .split-text p {
    font-size: 1rem;
  }

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

  .portfolio-clients,
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .split-section {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {

  .hero-grid,
  .service-detail-grid,
  .contact-wrapper,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

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

  .hero-copy,
  .hero-visual,
  .split-image,
  .split-text {
    width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .hero-copy {
    text-align: center;
  }

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

  .hero-frame-copy {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .project-card img {
    aspect-ratio: 16 / 9;
  }

  .split-section {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1rem 1.5rem;
    display: none;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav-links a {
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

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

  .nav-container {
    gap: 1rem;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 4rem;
    min-height: 85vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-grid,
  .split-section,
  .contact-wrapper,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 1.25rem;
  }

  .hero-frame {
    margin: 0 auto;
  }

  .hero-btns,
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn,
  .btn-audit {
    width: 100%;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-content,
  .portfolio-clients,
  .portfolio-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-section {
    padding-top: 0.75rem;
  }

  .split-section {
    gap: 2rem;
  }

  .hero-bg-glow {
    width: 90vw;
    height: 90vw;
    top: 0;
    right: -30%;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1rem 0;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .logo img {
    height: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 12vw, 2.4rem);
  }

  .hero-bg-glow {
    width: 80vw;
    height: 80vw;
    top: 5%;
    right: -25%;
  }

  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 16px;
    right: 16px;
  }

  .map-container {
    height: 260px;
  }
}

/* Contact Section & Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info-card {
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--accent-purple);
  margin-top: 0.2rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Map Section */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border-color);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader img {
  width: 100px;
  animation: loadGlow 1.5s ease-in-out infinite alternate;
}

@keyframes loadGlow {
  0% {
    filter: drop-shadow(0 0 10px var(--accent-purple-glow));
    transform: scale(0.9);
  }

  100% {
    filter: drop-shadow(0 0 30px var(--accent-purple));
    transform: scale(1.1);
  }
}

/* Split Section Layout */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

.split-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(47, 41, 94, 0.15);
  transition: var(--transition);
}

.split-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 41, 94, 0.3);
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-section {
    padding-top: 0.75rem;
  }
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover,
.footer-section a.active {
  color: var(--accent-purple);
}

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

.social-links a {
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

/* Hero Enhancements */
.hero-badge {
  display: inline-block;
  background: rgba(47, 41, 94, 0.1);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-purple);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Enhanced Service Cards */
.service-icon {
  font-size: 3rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(5px);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  font-size: 3rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.process-step h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
  position: relative;
}

.testimonial-content p:before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-purple);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.author-info h5 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

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

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .contact-wrapper,
  .footer-content,
  .split-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    text-align: center;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }
}

/* Service Detail Styles */
.service-detail {
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-purple);
  opacity: 0.1;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-detail h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.service-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: "✓";
  color: var(--accent-purple);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Portfolio Client Styles */
.portfolio-clients {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.client-item .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .contact-wrapper,
  .footer-content,
  .split-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    text-align: center;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

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

  .stat-label {
    font-size: 0.8rem;
  }

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

  .stat-card {
    padding: 1.5rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

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

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

  .testimonial-card {
    padding: 1.5rem;
  }

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

@media (max-width: 900px) {
  .nav-container {
    flex-wrap: nowrap !important;
  }

  .logo {
    margin-right: auto !important;
  }

  .mobile-menu-btn {
    order: 3;
    margin-left: 0.75rem;
  }

  header .btn-audit {
    order: 2;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
    min-width: 0 !important;
    width: auto !important;
    white-space: nowrap;
    display: inline-block !important;
  }

  /* Force all grids to 1 column to remove the 2x2 view */
  .portfolio-clients,
  .portfolio-grid,
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .hero-grid,
  .split-section,
  .split-section.reverse,
  .contact-wrapper,
  .footer-content {
    grid-template-columns: 1fr !important;
  }

  .split-text,
  .project-card-content,
  .service-detail,
  .service-copy,
  .contact-info-card,
  .hero-frame-copy,
  .footer-brand p,
  .footer-section p,
  .footer-section h4,
  .footer-section ul,
  .copyright p {
    text-align: center !important;
  }

  .nav-links a {
    text-align: center !important;
  }

  .social-links {
    justify-content: center !important;
  }

  .footer-logo {
    justify-content: center !important;
  }

  .service-features li {
    justify-content: center !important;
  }

  .split-text ul {
    display: inline-block;
    text-align: left;
    margin: 1.5rem auto 0;
  }

  /* Center buttons strictly */
  .split-text .btn,
  .project-card-content .btn,
  .service-copy .btn,
  .hero-copy .btn {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    justify-content: center;
  }

  .hero-btns,
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero-btns .btn,
  .btn {
    width: auto !important;
    min-width: 200px;
    max-width: 100%;
    text-align: center;
  }

  .contact-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

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

  .hero-copy p {
    text-align: center;
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero-copy p,
  .hero p {
    font-size: 1.05rem;
  }

  .btn {
    width: auto !important;
    min-width: 220px;
    text-align: center;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
    padding: 0 5rem;
  }

  header {
    padding: 3rem 0;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: clamp(4.5rem, 3vw, 6rem);
  }

  .section-padding {
    padding: 5rem 0;
  }
}

/* Final responsive override for mobile/tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  header {
    padding: 1.5rem 0;
  }

  .nav-container {
    align-items: center;
  }

  .hero {
    min-height: calc(100vh - 120px);
  }

  .hero-grid,
  .split-section,
  .contact-wrapper,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    max-width: 100%;
  }

  .hero-copy p {
    max-width: 100%;
    margin: 0 auto 1.25rem;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-btns {
    justify-content: center;
    width: 100%;
  }

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

  .hero-frame-copy {
    padding: 0.9rem 0.9rem 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.9rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-frame {
    width: 100%;
  }

  .hero-bg-glow {
    width: 75vw;
    height: 75vw;
    right: -20%;
    top: 0;
  }

  .btn {
    width: 100%;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

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

  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem 1rem 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-links a {
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

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

  .footer-section {
    padding-top: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 11vw, 2.4rem);
  }

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

  .hero-frame-copy {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.9rem;
  }

  .section-padding {
    padding: 2rem 0;
  }

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

  .footer-section,
  .footer-brand {
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 28px;
  }

  header {
    padding: 1rem 0;
  }

  .nav-container {
    gap: 0.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 12vw, 2.2rem);
  }

  .hero-copy p,
  .project-card-content p,
  .split-text p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.95rem 1.25rem;
  }

  .footer-content {
    padding: 0 0.5rem;
  }

  .footer-section ul {
    padding: 0;
  }
}