@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  /* FONTS */
  --headings-text: "Manrope", sans-serif;
  --body-text: "Inter", sans-serif;

  /* COLORS */
    --primary-color: #7C3AED;
    --secondary-color: #1F1F1F;
    --background-color: #F9FAFB;
    --blacktext-color: #111827;
    --highlight-color: rgb(102, 102, 102);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    min-width: 320px;
    overflow-x: hidden;
    padding-top: 76px; /* Compensate for fixed navbar */
}

@media (min-width: 640px) {
  body {
    padding-top: 100px; /* Adjust for larger navbar on bigger screens */
  }
}

* {
  padding: 0;
  margin: 0;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
}

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

.container {
  padding: 0 20px;
}

/* END GENERAL PAGE STYLING */
/* START HEADER */

/* Navbar Scroll Reveal Behavior */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--background-color);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

header.navbar-hidden {
  transform: translateY(-100%);
}

header.navbar-visible {
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-size: 32px;
  color: var(--primary-color);
  font-family: var(--headings-text);
  font-weight: 700;
  position: relative;
}

/* Enhanced MaxStudio logo */
.logo a {
  display: inline-block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    #9333ea,
    var(--primary-color)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

/* Subtle gradient animation */
@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Creative dot after 'Max' */
.logo a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  opacity: 0.8;
  display: none;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Hover effects */
/* .logo a:hover {
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
  animation-duration: 1.5s;
  letter-spacing: 1px;
} */

.logo a:hover::after {
  animation-duration: 0.8s;
  background: #9333ea;
}

@media (prefers-reduced-motion: reduce) {
  .logo a {
    transition: none;
  }
  .logo a::after {
    animation: none !important;
  }
}

.hamburger {
  display: none;
}

.contact-me {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 16px 24px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.contact-arrow svg {
  width: 16px;
  height: 16px;
  color: white;
  transition: transform 0.3s ease;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.contact-btn:hover {
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.35);
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:hover .contact-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.contact-btn:hover .contact-arrow svg {
  transform: translateX(1px);
}

.contact-btn:active {
  transform: translateY(0px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .contact-btn {
    transition: none;
  }
  .contact-btn:hover {
    transform: none;
  }
  .contact-btn::before {
    transition: none;
  }
}

.nav-bar {
  position: relative;
}

.nav-bar ul {
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 8px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
}

/* Creative floating background indicator */
.nav-bar ul::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: calc(100% - 16px);
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.15);
  z-index: 0;
}

.nav-bar li {
  display: block;
  color: var(--secondary-color);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0 2px;
  font-family: var(--headings-text);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}


.nav-bar li:hover {
  color: var(--primary-color);
  transform: translateY(-2px) scale(1.01);
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

/* Enhanced link styling */
.nav-bar ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  color: inherit;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 50px;
}


/* Active state */
.nav-bar li:active {
  color: white;
  background: var(--primary-color);
  transform: translateY(-1px) scale(0.98);
}

/* Subtle glow effect on container hover */
.nav-bar:hover ul {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
}

/* Floating particles effect */
.nav-bar::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.03) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  animation: float-particles 15s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-bar:hover::before {
  opacity: 1;
}

@keyframes float-particles {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-20px, -20px);
  }
}


/* Number indicators for desktop nav */
.nav-bar li::after {
  content: counter(desktop-nav-counter);
  counter-increment: desktop-nav-counter;
  position: absolute;
  top: -8px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: var(--body-text);
}

.nav-bar ul {
  counter-reset: desktop-nav-counter;
}

.nav-bar li:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Navigation Actions Container */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.hamburger {
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
  z-index: 1001;
  position: relative;
}

.hamburger:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .line {
  background-color: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #7c3aed 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

/* Animated background elements */
.mobile-menu-overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float-dots 20s linear infinite;
  opacity: 0.3;
}

.mobile-menu-overlay::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes float-dots {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50px, -50px) rotate(360deg);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(1) translateX(0);
    opacity: 0.05;
  }
  100% {
    transform: scale(1.2) translateX(-50px);
    opacity: 0.15;
  }
}

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

.mobile-menu-content {
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  position: relative;
  z-index: 10;
}

/* Decorative elements around menu */
.mobile-menu-content::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, white, transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-content::before {
  opacity: 0.8;
}

.mobile-menu-content::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-content::after {
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* Creative number indicators */
.mobile-nav-links li::before {
  content: "0" counter(menu-counter);
  counter-increment: menu-counter;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body-text);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-links {
  counter-reset: menu-counter;
}

.mobile-menu-overlay.active .mobile-nav-links li::before {
  opacity: 1;
  left: -60px;
}

.mobile-menu-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-links a {
  color: white;
  font-family: var(--headings-text);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Hover background effect */
.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.mobile-nav-links a:hover::before {
  left: 100%;
}

.mobile-nav-links a:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* Animated underline */
.mobile-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: translateX(-50%);
  transition: width 0.4s ease;
  border-radius: 1px;
}

.mobile-nav-links a:hover::after {
  width: 70%;
}

/* Side accent line */
.mobile-nav-links li:hover::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, transparent, white, transparent);
  border-radius: 2px;
  animation: slide-in 0.3s ease;
}

@keyframes slide-in {
  from {
    right: -50px;
    opacity: 0;
  }
  to {
    right: -30px;
    opacity: 1;
  }
}

@media (max-width: 810px) {
  .mobile-nav-actions {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .contact-me {
    display: none;
  }

  .nav-bar {
    display: none;
  }
  
  /* Hide desktop language switcher on mobile */
  .contact-me .language-switcher {
    display: none;
  }
  
  /* Mobile language switcher specific styles */
  .language-switcher--mobile {
    display: block !important;
  }
  
  .language-switcher--mobile .language-switcher-btn {
    padding: 8px 12px;
    min-height: 38px;
    gap: 8px;
  }
  
  .language-switcher--mobile .flag-icon {
    width: 24px;
    height: 18px;
  }
  
  .language-switcher--mobile .chevron-icon {
    width: 12px;
    height: 12px;
  }
  
  .language-switcher--mobile .language-dropdown {
    min-width: 200px;
    right: 0;
  }
}

/* Enhanced navbar for larger screens */
@media (min-width: 811px) {
  .nav-bar ul {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
  }

  .nav-bar li {
    font-size: 17px;
    padding: 14px 22px;
  }

  /* Staggered hover animation */
  .nav-bar li:nth-child(1) {
    transition-delay: 0s;
  }
  .nav-bar li:nth-child(2) {
    transition-delay: 0.05s;
  }
  .nav-bar li:nth-child(3) {
    transition-delay: 0.1s;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 30px;
  }
  .header-inner {
    min-height: 100px;
  }
  .header {
    min-height: 100px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  display: none;
  margin-right: 12px;
}

.language-switcher-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  min-height: 48px;
}

.language-switcher-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
  transform: translateY(-1px);
}

.language-switcher-btn .flag-icon {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-switcher-btn .chevron-icon {
  width: 14px;
  height: 14px;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.language-switcher-btn.active .chevron-icon {
  transform: rotate(180deg);
}

/* Language Dropdown */
.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: white;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.language-option:hover {
  background: rgba(124, 58, 237, 0.05);
}

.language-option .flag-icon {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.language-option .language-name {
  font-family: var(--headings-text);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blacktext-color);
  text-align: left;
  flex: 1;
  letter-spacing: 0.3px;
}

.language-option .check-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.language-option.active .check-icon {
  opacity: 1;
}

/* Show language switcher on desktop */
@media (min-width: 811px) {
  .language-switcher {
    display: block;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .language-dropdown {
    min-width: 200px;
  }
  
  .language-option {
    padding: 10px 14px;
  }
  
  .language-option .language-name {
    font-size: 0.9rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .language-switcher-btn,
  .language-dropdown,
  .language-option {
    transition: none;
  }
  
  .language-switcher-btn:hover {
    transform: none;
  }
}

/* END HEADER */

/* START SOCIAL PROOF SECTION */
.social-proof {
  position: relative;
  background: var(--background-color);
  padding: 80px 0 100px;
  overflow: hidden;
}

.social-proof-inner {
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Social Proof Title */
.social-proof-title {
  font-family: var(--headings-text);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 60px 0;
  line-height: 1.2;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

/* Logo Carousel Container */
.logo-carousel {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  margin: 0 0 50px 0;
  
  /* Subtle fade edges for professional look */
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* Logo Track - The moving container */
.logo-track {
  display: flex;
  align-items: center;
  animation: scroll-logos 25s linear infinite;
  width: calc(200%); /* Double width to accommodate duplicated logos */
}

/* Individual Logo Items */
.logo-item {
  flex: 0 0 auto;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out forwards;
  animation-delay: calc(0.4s + var(--logo-delay, 0s));
}

/* Client Logo Styling */
.client-logo {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  
  /* Subtle, professional styling */
  filter: grayscale(100%) brightness(0.7) contrast(0.8);
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle hover effect for logos */
.logo-item:hover .client-logo {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Social Proof Subtext */
.social-proof-subtext {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: rgba(102, 102, 102, 0.7);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

/* Keyframe Animation for Infinite Scroll */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move exactly half way (one set of logos) */
  }
}

/* Individual logo staggered animation delays */
.logo-item:nth-child(1) { --logo-delay: 0.1s; }
.logo-item:nth-child(2) { --logo-delay: 0.15s; }
.logo-item:nth-child(3) { --logo-delay: 0.2s; }
.logo-item:nth-child(4) { --logo-delay: 0.25s; }
.logo-item:nth-child(5) { --logo-delay: 0.3s; }
.logo-item:nth-child(6) { --logo-delay: 0.35s; }

/* Subtle background enhancement */
.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%, 
    rgba(124, 58, 237, 0.02) 0%, 
    transparent 50%
  );
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 480px) {
  .social-proof {
    padding: 60px 0 80px;
  }
  
  .social-proof-title {
    margin-bottom: 40px;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  
  .logo-carousel {
    height: 60px;
    margin-bottom: 40px;
  }
  
  .logo-item {
    margin: 0 25px;
  }
  
  .client-logo {
    height: 40px;
    max-width: 100px;
  }
  
  .social-proof-subtext {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .social-proof {
    padding: 100px 0 120px;
  }
  
  .social-proof-title {
    margin-bottom: 80px;
  }
  
  .logo-carousel {
    margin-bottom: 60px;
  }
  
  .logo-item {
    margin: 0 50px;
  }
}

@media (min-width: 1024px) {
  .social-proof {
    padding: 120px 0 140px;
  }
  
  .social-proof-title {
    margin-bottom: 100px;
  }
  
  .logo-item {
    margin: 0 60px;
  }
  
  .client-logo {
    height: 60px;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
  
  .social-proof-title,
  .logo-item,
  .social-proof-subtext {
    animation: none;
    opacity: 1;
  }
  
  .logo-item:hover .client-logo {
    transform: none;
  }
}

/* Common fade-slide-up animation for consistency */
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* END SOCIAL PROOF SECTION */


/* START PORTFOLIO PAGE STYLES */

/* Portfolio Hero Section */
.portfolio-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--background-color);
}

.portfolio-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.portfolio-hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.portfolio-badge span {
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-hero-title {
  font-family: var(--headings-text);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 30px 0;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--blacktext-color);
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

.portfolio-hero-title--accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
  margin-top: 0.2em;
}

.portfolio-hero-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.6;
  color: var(--highlight-color);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

/* Portfolio Hero Visual */
.portfolio-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.portfolio-hero-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.8s forwards;
}

.portfolio-hero-vector {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(124, 58, 237, 0.1));
}


/* Active state for current page in navigation */
.nav-bar ul li:has(a.active),
.nav-bar ul li a.active {
  color: var(--primary-color);
  /* background: rgba(124, 58, 237, 0.15); */
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}

/* Fallback for browsers that don't support :has() */
.nav-bar ul li.active {
  color: var(--primary-color);
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}


/* Portfolio Page Responsive Design */
@media (max-width: 480px) {
  .portfolio-hero {
    padding: 100px 0 60px;
    min-height: 60vh;
  }

  .portfolio-badge {
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .portfolio-badge span {
    font-size: 0.75rem;
  }

  .portfolio-hero-title {
    margin-bottom: 20px;
  }
  
  .portfolio-hero-visual {
    margin-top: 30px;
  }
  
  .portfolio-hero-illustration {
    max-width: 100%;
  }

}

@media (min-width: 768px) {
  .portfolio-hero-inner {
    text-align: center;
  }
  
  .portfolio-hero-content {
    text-align: center;
  }
  
  .portfolio-hero-description {
    margin: 0 auto;
  }
  
  .portfolio-hero-visual {
    margin-top: 50px;
  }
  
  .portfolio-hero-illustration {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    text-align: left;
  }
  
  .portfolio-hero-content {
    text-align: left;
  }
  
  .portfolio-hero-title {
    text-align: left;
  }
  
  .portfolio-hero-description {
    margin: 0;
    text-align: left;
  }
  
  .portfolio-hero-visual {
    margin-top: 0;
    justify-content: flex-end;
  }
  
  .portfolio-hero-illustration {
    max-width: 600px;
  }
}

@media (min-width: 1440px) {
  .portfolio-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
  
  .portfolio-hero-illustration {
    max-width: 700px;
  }
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 140px 0 100px;
  }

}

@media (min-width: 1024px) {
  .portfolio-hero {
    min-height: 80vh;
  }

}

/* Projects Showcase Section */
.projects-showcase {
  padding: 80px 0 120px;
  background: var(--background-color);
  position: relative;
}

.projects-showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  z-index: 10;
}

/* Project Card Styling */
.project-card {
  position: relative;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out forwards;
  animation-delay: var(--card-delay, 0.2s);
  scroll-margin-top: 120px; /* Offset for fixed header */
}

.project-card:nth-child(1) { --card-delay: 0.2s; }
.project-card:nth-child(2) { --card-delay: 0.4s; }
.project-card:nth-child(3) { --card-delay: 0.6s; }
.project-card:nth-child(4) { --card-delay: 0.8s; }
.project-card:nth-child(5) { --card-delay: 1.0s; }

/* Project Number */
.project-number {
  font-family: var(--headings-text);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: rgba(124, 58, 237, 0.08);
  line-height: 0.8;
  margin: 0 0 -20px 0;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

/* Project Title Wrapper */
.project-title-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
}

/* Project Title */
.project-title {
  font-family: var(--headings-text);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--blacktext-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  flex: 1;
}

/* Project Year */
.project-year {
  font-family: var(--headings-text);
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--highlight-color);
  opacity: 0.7;
  white-space: nowrap;
  position: relative;
}

.project-year::before {
  content: '|';
  margin-right: 12px;
  color: var(--primary-color);
  opacity: 0.4;
  font-weight: 300;
}

.project-accent {
  color: var(--primary-color);
  position: relative;
}

.project-accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #9333ea);
  opacity: 0.3;
  border-radius: 2px;
}

/* Two-Column Project Layout */
.project-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 40px 0 50px 0;
  align-items: start;
}

/* Main Project Image */
.project-main-image {
  position: relative;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

/* Project Details Panel */
.project-details-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
  height: fit-content;
  position: relative;
}

/* Project Meta Info */
.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.project-type {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.meta-separator {
  color: rgba(124, 58, 237, 0.3);
  font-size: 0.8rem;
}

.project-timeline,
.project-year {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--highlight-color);
  font-weight: 400;
}

/* Project Description */
.project-description {
  margin-bottom: 32px;
}

.project-description p {
  font-family: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--blacktext-color);
  margin: 0;
  font-weight: 400;
}

/* Tech Stack */
.project-tech {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tech-item {
  font-family: var(--body-text);
  font-size: 0.85rem;
  color: var(--highlight-color);
  background: rgba(124, 58, 237, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Project Result */
.project-result {
  margin-bottom: 40px;
}

.project-result strong {
  font-family: var(--headings-text);
  font-size: 1.2rem;
  color: var(--blacktext-color);
  font-weight: 600;
  line-height: 1.4;
}

/* View Project Button */
.project-cta {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.view-project-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  width: 100%;
  background: var(--secondary-color);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(31, 31, 31, 0.15);
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.view-project-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blacktext-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.view-project-btn:hover {
  box-shadow: 0 6px 24px rgba(31, 31, 31, 0.25);
  background: var(--blacktext-color);
}

.view-project-btn:hover::before {
  opacity: 1;
}

.view-project-btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.view-project-btn:hover .btn-arrow {
  transform: translateX(2px);
}


/* Project Thumbnails */
.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.thumbnail-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  background: #f8f9fa;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.thumbnail-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

/* Add purple border on hover for desktop */
@media (min-width: 769px) {
  .thumbnail-item:hover {
    border: 2px solid var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
  }
}

.thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  filter: brightness(0.95);
}

.thumbnail-item:hover .thumbnail-image {
  filter: brightness(1);
  transform: scale(1.05);
}

/* Thumbnail hover effect overlay */
.thumbnail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(255, 107, 53, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.thumbnail-item:hover::before {
  opacity: 1;
}

/* Hover Focus Effect - Dim other thumbnails when one is hovered (Desktop only) */
@media (min-width: 769px) {
  .thumbnail-item:hover ~ .thumbnail-item,
  .thumbnail-item:has(~ .thumbnail-item:hover) {
    filter: grayscale(70%) brightness(0.5) contrast(0.8);
    opacity: 0.4;
    transition: all 0.3s ease;
  }

  /* Alternative approach using JavaScript-friendly method */
  .project-thumbnails.has-hovered .thumbnail-item:not(.is-hovered) {
    filter: grayscale(70%) brightness(0.5) contrast(0.8);
    opacity: 0.4;
    transition: all 0.3s ease;
  }

  .project-thumbnails.has-hovered .thumbnail-item.is-hovered {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    border: 2px solid var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
  }
}

/* Add subtle animation on scroll */
@keyframes project-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Projects */
@media (max-width: 480px) {
  .projects-showcase {
    padding: 60px 0 80px;
  }

  .projects-showcase-inner {
    gap: 80px;
  }

  .project-number {
    font-size: clamp(3rem, 15vw, 5rem);
    margin-bottom: -10px;
  }

  .project-title-wrapper {
    margin-bottom: 30px;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .project-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 8px;
  }

  .project-year {
    font-size: clamp(1rem, 4vw, 1.4rem);
    align-self: flex-end;
  }

  .project-year::before {
    margin-right: 8px;
  }

  /* Two-column layout adjustments for mobile */
  .project-two-column {
    margin: 30px 0 25px 0;
    gap: 24px;
  }

  .project-main-image {
    padding: 20px 15px;
  }

  .main-image {
    width: 100%;
  }

  .project-details-panel {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .project-meta {
    margin-bottom: 24px;
    gap: 8px;
  }

  .project-type {
    font-size: 0.8rem;
  }

  .project-timeline,
  .project-year {
    font-size: 0.8rem;
  }

  .project-description {
    margin-bottom: 24px;
  }

  .project-description p {
    font-size: 1rem;
  }

  .project-tech {
    gap: 12px;
    margin-bottom: 24px;
  }

  .tech-item {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .project-result {
    margin-bottom: 32px;
  }

  .project-result strong {
    font-size: 1.1rem;
  }

  .view-project-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .project-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    margin-top: 20px;
  }

  .thumbnail-item:nth-child(1),
  .thumbnail-item:nth-child(2) {
    /* First two items in first row */
  }

  .thumbnail-item:nth-child(3) {
    grid-column: 1 / -1; /* Span full width */
  }

  .thumbnail-item {
    border-radius: 10px;
  }

  .thumbnail-image {
    aspect-ratio: 16/10;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .projects-showcase {
    padding: 70px 0 100px;
  }

  .projects-showcase-inner {
    gap: 100px;
  }

  /* Two-column layout adjustments for tablet */
  .project-two-column {
    margin: 35px 0 40px 0;
    gap: 30px;
  }

  .project-main-image {
    padding: 25px 20px;
  }

  .project-details-panel {
    padding: 32px 24px;
  }

  .project-description p {
    font-size: 1.05rem;
  }

  .tech-item {
    font-size: 0.8rem;
  }

  .project-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
  }

  .thumbnail-item:nth-child(1),
  .thumbnail-item:nth-child(2) {
    /* First two items in first row */
  }

  .thumbnail-item:nth-child(3) {
    grid-column: 1 / -1; /* Span full width */
  }

  .thumbnail-image {
    aspect-ratio: 3/2;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Two-column layout becomes actual two columns */
  .project-two-column {
    grid-template-columns: 1fr 0.8fr;
    margin: 45px 0 55px 0;
    gap: 40px;
    align-items: center;
  }

  .project-main-image {
    padding: 35px 25px;
  }

  .thumbnail-item {
    border-radius: 10px;
  }
}

@media (min-width: 1024px) {
  .projects-showcase {
    padding: 100px 0 140px;
  }

  .projects-showcase-inner {
    gap: 140px;
  }

  /* Two-column layout for desktop */
  .project-two-column {
    grid-template-columns: 1.2fr 1fr;
    margin: 50px 0 60px 0;
    gap: 50px;
    align-items: center;
  }

  .project-main-image {
    padding: 40px 30px;
  }

  .main-image {
    width: 100%;
    max-width: 900px;
  }

  .project-thumbnails {
    gap: 25px;
    margin-top: 40px;
  }

  .thumbnail-item {
    border-radius: 15px;
  }
}

@media (min-width: 1440px) {
  /* Ultra-wide two-column layout */
  .project-two-column {
    grid-template-columns: 1.3fr 1fr;
    margin: 60px 0 70px 0;
    gap: 60px;
  }

  .project-main-image {
    padding: 50px 40px;
  }

  .main-image {
    max-width: 1000px;
  }

  .project-details-panel {
    padding: 48px 40px;
  }

  .project-meta {
    margin-bottom: 40px;
    gap: 16px;
  }

  .project-type {
    font-size: 1rem;
  }

  .project-timeline,
  .project-year {
    font-size: 1rem;
  }

  .project-description {
    margin-bottom: 40px;
  }

  .project-description p {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .project-tech {
    gap: 20px;
    margin-bottom: 40px;
  }

  .tech-item {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .project-result {
    margin-bottom: 48px;
  }

  .project-result strong {
    font-size: 1.3rem;
  }
}

/* Add floating shapes for visual interest */
.projects-showcase::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: rgba(124, 58, 237, 0.03);
  border-radius: 50%;
  animation: float-shapes 15s ease-in-out infinite;
}

.projects-showcase::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 30%;
  animation: float-shapes 12s ease-in-out infinite reverse;
}

/* Image Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px;
}

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

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active .lightbox-container {
  transform: scale(1);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-close:active {
  transform: scale(0.95);
}

/* Lightbox Content */
.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
}

/* Loading Spinner */
.lightbox-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.lightbox-loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

.loading-text {
  font-family: var(--body-text);
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lightbox-overlay {
    padding: 15px;
  }

  .lightbox-close {
    top: -45px;
    width: 35px;
    height: 35px;
  }

  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-content {
    border-radius: 8px;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .lightbox-overlay {
    padding: 10px;
  }

  .lightbox-close {
    top: -40px;
    width: 32px;
    height: 32px;
  }

  .lightbox-close svg {
    width: 18px;
    height: 18px;
  }
}

/* START TESTIMONIALS SECTION */

.testimonials {
  position: relative;
  background: var(--background-color);
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-inner {
  position: relative;
  z-index: 10;
}

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

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.testimonials-badge span {
  font-family: var(--body-text);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out forwards;
  animation-delay: var(--card-delay, 0.6s);
}

.testimonial-card:nth-child(1) { --card-delay: 0.6s; }
.testimonial-card:nth-child(2) { --card-delay: 0.8s; }
.testimonial-card:nth-child(3) { --card-delay: 1.0s; }

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.15);
}

/* Quote Section */
.testimonial-quote {
  margin-bottom: 32px;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  opacity: 0.6;
  margin-bottom: 20px;
}

.testimonial-quote p {
  font-family: var(--body-text);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--blacktext-color);
  margin: 0;
  font-weight: 400;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(147, 51, 234, 0.05));
}

.author-avatar:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.author-avatar:hover .avatar-image {
  transform: scale(1.1);
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--headings-text);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blacktext-color);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.author-role {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--highlight-color);
  margin: 0;
  font-weight: 500;
  opacity: 0.8;
}

/* Subtle Divider */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  opacity: 0.6;
}

/* Floating Background Elements */
.testimonials::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(147, 51, 234, 0.01));
  border-radius: 50%;
  animation: float-shapes 15s ease-in-out infinite;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials-header {
    margin-bottom: 60px;
  }
  
  .testimonials-badge {
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  
  .testimonials-badge span {
    font-size: 0.85rem;
  }
  
  .testimonials-grid {
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .quote-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
  }
  
  .testimonial-quote {
    margin-bottom: 24px;
  }
  
  .testimonial-quote p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    border-width: 2px;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-role {
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 140px 0;
  }
  
  .testimonials-header {
    margin-bottom: 100px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .testimonial-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  
  .testimonial-card {
    padding: 48px 40px;
  }
  
  .quote-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
  }
  
  .testimonial-quote {
    margin-bottom: 40px;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .author-avatar {
    width: 55px;
    height: 55px;
  }
  
  .author-name {
    font-size: 1.15rem;
  }
  
  .author-role {
    font-size: 0.95rem;
  }
}

@media (min-width: 1440px) {
  .testimonials {
    padding: 160px 0;
  }
  
  .testimonials-grid {
    max-width: 1300px;
    gap: 48px;
  }
  
  .testimonial-card {
    padding: 56px 48px;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    animation: none;
    opacity: 1;
  }
  
  .testimonials-badge,
  .testimonials-title {
    animation: none;
    opacity: 1;
  }
  
  .testimonial-card:hover {
    transform: none;
  }
  
  .title-highlight {
    animation: none;
  }
  
  .testimonials::after {
    animation: none;
  }
  
  .author-avatar:hover {
    transform: none;
  }
  
  .author-avatar:hover .avatar-image {
    transform: none;
  }
}

/* END TESTIMONIALS SECTION */

/* START CONTACT CTA SECTION */

.contact-cta {
  position: relative;
  background: var(--background-color);
  padding: 100px 0;
  overflow: hidden;
}

.contact-cta-inner {
  position: relative;
  z-index: 10;
}

.contact-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact CTA Title */
.contact-cta-title {
  font-family: var(--headings-text);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--blacktext-color);
  margin: 0 0 24px 0;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.contact-cta-title .title-highlight {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
}

/* Contact CTA Description */
.contact-cta-description {
  font-family: var(--body-text);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0 0 40px 0;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

/* Contact CTA Button Container */
.contact-cta-button {
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

/* Contact CTA Button Styles */
.contact-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.contact-cta .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9333ea, var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 50px;
}

.contact-cta .cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.contact-cta .cta-btn:hover::before {
  opacity: 1;
}

.contact-cta .cta-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-cta .btn-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.contact-cta .btn-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
}

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

.contact-cta .cta-btn:hover .btn-text {
  transform: translateX(-2px);
}

/* Contact CTA Info */
.contact-cta-info {
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.8s forwards;
}

.contact-info-text {
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: var(--highlight-color);
  margin: 0;
  opacity: 0.8;
  font-weight: 400;
}

.contact-highlight {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.contact-highlight::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.4;
  border-radius: 1px;
}

/* Subtle Background Elements */
.contact-cta::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(147, 51, 234, 0.02));
  border-radius: 50%;
  animation: float-shapes 20s ease-in-out infinite;
  z-index: 1;
}

.contact-cta::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(124, 58, 237, 0.03), rgba(147, 51, 234, 0.01));
  border-radius: 30%;
  animation: float-shapes 15s ease-in-out infinite reverse;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-cta {
    padding: 80px 0;
  }
  
  .contact-cta-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .contact-cta-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 20px;
  }
  
  .contact-cta-description {
    font-size: clamp(1rem, 4vw, 1.15rem);
    margin-bottom: 32px;
    max-width: 100%;
  }
  
  .contact-cta-button {
    margin-bottom: 24px;
  }
  
  .contact-cta .cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 160px;
    gap: 10px;
  }
  
  .contact-cta .btn-arrow {
    width: 16px;
    height: 16px;
  }
  
  .contact-info-text {
    font-size: 0.9rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Tablet adjustments for service pricing */
  .service-title-wrapper {
    margin-bottom: 50px;
    gap: 18px;
  }
  
  .service-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
  
  .pricing-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 6px 16px;
  }
  
  /* Service testimonial tablet adjustments */
  .service-testimonial {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: 7px;
  }
  
  .service-testimonial .quote-icon {
    width: 13px;
    height: 13px;
    margin-bottom: 7px;
  }
  
  .testimonial-text {
    font-size: 0.82rem;
    font-weight: 300;
  }
}

@media (min-width: 769px) {
  /* Desktop and up - keep horizontal layout */
  .service-title-wrapper {
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
  }
  
  .pricing-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }
  
  /* Make testimonial text smaller on larger screens */
  .testimonial-text {
    font-size: 0.75rem;
    font-weight: 300;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .contact-cta {
    padding: 90px 0;
  }
  
  .contact-cta-content {
    max-width: 650px;
  }
  
  .contact-cta .cta-btn {
    padding: 17px 34px;
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .contact-cta {
    padding: 120px 0;
  }
  
  .contact-cta-content {
    max-width: 700px;
  }
  
  .contact-cta-title {
    margin-bottom: 28px;
  }
  
  .contact-cta-description {
    margin-bottom: 48px;
  }
  
  .contact-cta-button {
    margin-bottom: 40px;
  }
  
  .contact-cta .cta-btn {
    padding: 20px 40px;
    font-size: 1.15rem;
    min-width: 200px;
    gap: 14px;
  }
  
  .contact-cta .btn-arrow {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1440px) {
  .contact-cta {
    padding: 140px 0;
  }
  
  .contact-cta-content {
    max-width: 800px;
  }
  
  .contact-cta .cta-btn {
    padding: 22px 44px;
    font-size: 1.2rem;
  }
  
  .contact-info-text {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact-cta-title,
  .contact-cta-description,
  .contact-cta-button,
  .contact-cta-info {
    animation: none;
    opacity: 1;
  }
  
  .contact-cta .cta-btn:hover {
    transform: none;
  }
  
  .contact-cta .cta-btn:hover .btn-arrow,
  .contact-cta .cta-btn:hover .btn-text {
    transform: none;
  }
  
  .contact-cta-title .title-highlight {
    animation: none;
  }
  
  .contact-cta::before,
  .contact-cta::after {
    animation: none;
  }
}

/* END CONTACT CTA SECTION */

/* END PORTFOLIO PAGE STYLES */

/* START CONTACT PAGE STYLES */

/* Full Screen Contact Section */
.contact-fullscreen {
  min-height: calc(100vh - 100px); /* Account for header */
  background: #2d1b69; /* Dark purple background */
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.contact-fullscreen-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Column */
.contact-left {
  color: white;
}

.contact-left-content {
  max-width: 500px;
}

.contact-heading {
  font-family: var(--headings-text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 60px 0;
  color: white;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--headings-text);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-icon {
  width: 28px;
  height: 28px;
  color: #8b5cf6; /* Vibrant purple */
  flex-shrink: 0;
}

.contact-phone:hover {
  color: #8b5cf6; /* Vibrant purple */
  transform: translateX(5px);
}

.contact-phone:hover .phone-icon {
  color: white;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--headings-text);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-icon {
  width: 28px;
  height: 28px;
  color: #8b5cf6; /* Vibrant purple */
  flex-shrink: 0;
}

.contact-email:hover {
  color: #8b5cf6; /* Vibrant purple */
  transform: translateX(5px);
}

.contact-email:hover .email-icon {
  color: white;
}

.contact-brief {
  font-family: var(--body-text);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-alternative {
  font-family: var(--body-text);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.booking-link {
  color: #8b5cf6; /* Vibrant purple */
  text-decoration: underline;
  transition: all 0.3s ease;
}

.booking-link:hover {
  color: white;
  text-decoration-color: #8b5cf6;
}

/* Right Column - Form */
.contact-right {
  background: #ffffff; /* White background */
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-modern {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field {
  position: relative;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Form Inputs */
.form-input-modern,
.form-select-modern,
.form-textarea-modern {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
  color: #999;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-select-modern {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  color: #333;
}

.form-select-modern option {
  color: #333;
}

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

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: #666;
  user-select: none;
}

.checkbox-label:hover {
  color: #333;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  appearance: none;
  background: white;
}

.form-checkbox:hover {
  border-color: #8b5cf6;
}

.form-checkbox:checked {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
}

.form-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Form Terms */
.form-terms {
  font-family: var(--body-text);
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 24px 0;
  text-align: center;
}

.form-terms a {
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-terms a:hover {
  text-decoration: underline;
}

/* Submit Button */
.form-submit-modern {
  width: 100%;
  padding: 16px 32px;
  background: #8b5cf6; /* Vibrant purple */
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--headings-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.form-submit-modern:hover {
  background: #7c3aed; /* Darker purple on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.form-submit-modern:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.form-submit-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-fullscreen-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 30px;
  }
  
  .contact-left {
    text-align: center;
  }
  
  .contact-left-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-heading {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 40px;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  
  .contact-phone,
  .contact-email {
    font-size: 2rem;
    justify-self: center;
  }
  
  .contact-right {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-fullscreen {
    min-height: auto;
    padding: 40px 0;
  }
  
  .contact-fullscreen-inner {
    padding: 0 20px;
    gap: 30px;
  }
  
  .contact-heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .contact-heading br {
    display: none;
  }
  
  .contact-details {
    gap: 20px;
  }
  
  .contact-phone,
  .contact-email {
    font-size: 1.5rem;
    word-break: break-word;
  }
  
  .phone-icon,
  .email-icon {
    width: 26px;
    height: 26px;
  }
  
  .contact-brief {
    font-size: 0.9rem;
  }
  
  .contact-right {
    padding: 24px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .contact-fullscreen {
    padding: 30px 0;
  }
  
  .contact-fullscreen-inner {
    padding: 0 15px;
    gap: 25px;
  }
  
  .contact-heading {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
  
  .contact-phone,
  .contact-email {
    font-size: 1.3rem;
    flex-wrap: wrap;
  }
  
  .contact-right {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .form-input-modern,
  .form-select-modern,
  .form-textarea-modern {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  
  .form-submit-modern {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .checkbox-label {
    font-size: 0.85rem;
  }
}

/* END CONTACT PAGE STYLES */

/* START SERVICES PAGE STYLES */

/* Services Hero Section */
.services-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--background-color);
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.services-hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.services-badge span {
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-hero-title {
  font-family: var(--headings-text);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 30px 0;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--blacktext-color);
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

.services-hero-title--accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
  margin-top: 0.2em;
}

.services-hero-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.6;
  color: var(--highlight-color);
  font-weight: 400;
  max-width: 700px;
  margin: 0;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

/* Services Hero Content */
.services-hero-content {
  text-align: left;
  order: 1;
}

/* Services Hero Visual */
.services-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.8s forwards;
}

.services-hero-illustration {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 450px;
  filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.15));
  transition: all 0.3s ease;
}


/* Pricing Section */
.pricing-section {
  padding: 80px 0 120px;
  background: var(--background-color);
  position: relative;
}

.pricing-inner {
  position: relative;
  z-index: 10;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0 0 20px 0;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.pricing-subtitle {
  font-family: var(--body-text);
  font-size: clamp(1rem, 3vw, 1.1rem);
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 100px auto;
  align-items: stretch;
}

/* Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.25);
}

/* Featured Card */
.pricing-card--featured {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
  position: relative;
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  border-radius: 20px 20px 0 0;
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--body-text);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Card Header */
.pricing-card-header {
  margin-bottom: 32px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card-title {
  font-family: var(--headings-text);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 12px 0;
}

.pricing-card-description {
  font-family: var(--body-text);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--highlight-color);
  margin: 0;
}

/* Pricing */
.pricing-card-price {
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-family: var(--headings-text);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  vertical-align: top;
  margin-right: 4px;
}

.price-amount {
  font-family: var(--headings-text);
  font-size: 4rem;
  font-weight: 800;
  color: var(--blacktext-color);
  line-height: 1;
}

.price-text {
  font-family: var(--body-text);
  font-size: 1.1rem;
  color: var(--highlight-color);
  font-weight: 500;
  margin-right: 4px;
}

/* Features List */
.pricing-card-features {
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--body-text);
  font-size: 1rem;
  color: var(--blacktext-color);
  line-height: 1.4;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--primary-color);
  width: 16px;
  height: 16px;
}

/* Pricing Buttons */
.pricing-card-cta {
  text-align: center;
  margin-top: auto;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.pricing-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.pricing-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.pricing-btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.pricing-btn--secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

.pricing-btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.pricing-btn:hover .btn-arrow {
  transform: translateX(2px);
}

/* Add-ons Section */
.addons-section {
  margin-top: 40px;
}

.addons-header {
  text-align: center;
  margin-bottom: 60px;
}

.addons-title {
  font-family: var(--headings-text);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
}

.addons-description {
  font-family: var(--body-text);
  font-size: 1rem;
  color: var(--highlight-color);
  margin: 0;
}

/* Add-ons Grid */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Add-on Cards */
.addon-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.15);
}

.addon-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.addon-content {
  flex: 1;
}

.addon-title {
  font-family: var(--headings-text);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blacktext-color);
  margin: 0 0 4px 0;
}

.addon-description {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--highlight-color);
  margin: 0 0 8px 0;
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.addon-amount {
  font-family: var(--headings-text);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.addon-unit {
  font-family: var(--body-text);
  font-size: 0.8rem;
  color: var(--highlight-color);
  font-weight: 500;
}

/* Responsive Design */
@media (min-width: 481px) {
  .services-hero-content {
    text-align: left;
  }
  
  .services-hero-description {
    margin: 0;
  }
}

@media (min-width: 640px) {
  .services-hero {
    padding: 140px 0 100px;
  }
  
  .services-hero-illustration {
    max-height: 500px;
  }
}

@media (min-width: 768px) {
  .services-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .services-hero-content {
    text-align: left;
  }
  
  .services-hero-description {
    margin: 0;
  }
  
  .services-hero-visual {
    justify-content: flex-end;
  }
  
  .services-hero-illustration {
    max-height: 450px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
  }
  
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .addon-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .services-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .service-inner {
    max-width: 1300px;
  }
  
  .services-hero-illustration {
    max-height: 500px;
  }
  
  /* Reduce spacing between title and layout on desktop */
  .service-title-wrapper {
    margin-bottom: 30px;
  }
  
  .pricing-section {
    padding: 100px 0 140px;
  }
  
  .pricing-header {
    margin-bottom: 100px;
  }
  
  .pricing-card {
    padding: 48px;
  }
  
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .addon-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .services-hero-inner {
    max-width: 1400px;
  }
  
  .service-inner {
    max-width: 1400px;
  }
  
  .pricing-grid {
    max-width: 1200px;
  }
  
  .pricing-card {
    padding: 56px;
  }
  
  .addons-grid {
    max-width: 1000px;
  }
}

/* Services Page Responsive Design */
@media (max-width: 480px) {
  .services-hero {
    padding: 100px 0 60px;
    min-height: 60vh;
  }
  
  .services-hero-content {
    text-align: center;
  }
  
  .services-hero-description {
    margin: 0 auto;
  }
  
  .services-badge {
    padding: 6px 16px;
    margin-bottom: 20px;
  }
  
  .services-badge span {
    font-size: 0.75rem;
  }
  
  .services-hero-title {
    margin-bottom: 20px;
  }
  
  .services-hero-inner {
    gap: 40px;
  }
  
  .services-hero-illustration {
    max-height: 400px;
  }
  
  /* Service pricing mobile adjustments */
  .service-title-wrapper {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .service-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .pricing-text {
    font-size: clamp(1rem, 4vw, 1.1rem);
    padding: 6px 16px;
    letter-spacing: 0.2px;
  }
  
  /* Make service illustrations bigger on mobile */
  .service-illustration {
    max-width: 300px;
  }
  
  /* Service testimonial mobile adjustments */
  .service-testimonial {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 6px;
  }
  
  .testimonial-quote {
    margin-bottom: 10px;
  }
  
  .service-testimonial .quote-icon {
    width: 12px;
    height: 12px;
    margin-bottom: 6px;
  }
  
  .testimonial-text {
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 300;
  }
  
  .author-name {
    font-size: 0.75rem;
  }
  
  .author-role {
    font-size: 0.7rem;
  }
  
  .pricing-section {
    padding: 60px 0 80px;
  }
  
  .pricing-header {
    margin-bottom: 60px;
  }
  
  .pricing-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .pricing-card-title {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
  
  .price-text {
    font-size: 1rem;
  }
  
  .pricing-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-width: 160px;
  }
  
  .addon-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .addon-icon {
    width: 40px;
    height: 40px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .services-badge,
  .services-hero-title,
  .services-hero-description {
    animation: none;
    opacity: 1;
  }
  
  .pricing-card:hover,
  .addon-card:hover,
  .pricing-btn:hover {
    transform: none;
  }
  
  .services-hero-title--accent {
    animation: none;
  }
  
  .service-testimonial {
    transition: none;
  }
}

/* Service Sections */
.service-section {
  padding: 100px 0;
  background: var(--background-color);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

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

/* Business Website Section - Purple Background */
.business-website-section {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.03) 0%, rgba(147, 51, 234, 0.05) 100%);
  position: relative;
}

.business-website-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.service-inner {
  margin: 0 auto;
}

.service-content {
  position: relative;
}

/* Service Label */
.service-label {
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.8;
}

/* Service Title Wrapper */
.service-title-wrapper {
  margin: 0 0 60px 0;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

/* Service Title */
.service-title {
  font-family: var(--headings-text);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--blacktext-color);
  line-height: 1.1;
  margin: 0;
  text-transform: none;
  flex-shrink: 0;
}

/* Service Pricing */
.service-pricing {
  margin: 0;
  display: flex;
  align-items: center;
}

.pricing-text {
  font-family: var(--body-text);
  font-size: clamp(1.1rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(124, 58, 237, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: inline-block;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Service Layout */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

/* Left Side - Characteristics */
.service-left {
  order: 1;
}

.characteristics-title {
  font-family: var(--body-text);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blacktext-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  position: relative;
}

.characteristics-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.characteristics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.characteristic-item {
  font-family: var(--headings-text);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.characteristic-item:last-child {
  margin-bottom: 0;
}

/* Right Side */
.service-right {
  order: 2;
}

/* Right For You Section */
.right-for-you {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(147, 51, 234, 0.12));
  border: none;
  border-radius: 0;
  padding: 36px 32px;
  position: relative;
}


.right-for-you::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  border-radius: 16px 16px 0 0;
  opacity: 0.7;
}

.right-for-you-title {
  font-family: var(--body-text);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blacktext-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.right-for-you-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.right-for-you-list li {
  font-family: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--blacktext-color);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.right-for-you-list li:last-child {
  margin-bottom: 0;
}

.right-for-you-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.right-for-you-list li strong {
  color: var(--primary-purple);
  font-weight: 600;
}

/* Service Call-to-Action */
.service-cta {
  margin-top: 48px;
  text-align: center;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 16px 24px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}

.service-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-cta-button:hover {
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.35);
}

.service-cta-button:hover::before {
  opacity: 1;
}

.cta-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.cta-arrow svg {
  width: 16px;
  height: 16px;
  color: white;
  transition: transform 0.3s ease;
}

.service-cta-button:hover .cta-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

.service-cta-button:hover .cta-arrow svg {
  transform: translateX(1px);
}

.service-cta-button:active {
  transform: translateY(0px) scale(0.98);
}

/* Service Visual */
.service-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service-illustration {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 35px rgba(124, 58, 237, 0.12));
  transition: all 0.3s ease;
}

/* Service Testimonial */
.service-testimonial {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(124, 58, 237, 0.03);
  border-left: 3px solid rgba(124, 58, 237, 0.2);
  border-radius: 8px;
  position: relative;
}

.testimonial-content {
  position: relative;
}

.testimonial-quote {
  margin-bottom: 12px;
}

.service-testimonial .quote-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-color);
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
}

.testimonial-text {
  font-family: var(--body-text);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--highlight-color);
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--body-text);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 0 1px 0;
  line-height: 1.2;
}

.author-role {
  font-family: var(--body-text);
  font-size: 0.75rem;
  color: var(--highlight-color);
  margin: 0;
  font-weight: 400;
  opacity: 0.7;
}

/* Overview Section */
.service-overview {
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding-top: 60px;
  margin-top: 20px;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.overview-text-section {
  order: 1;
}

.overview-title {
  font-family: var(--body-text);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blacktext-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.overview-text {
  font-family: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--blacktext-color);
  margin: 0;
  max-width: none;
  font-weight: 400;
}

/* Responsive Design for Service Sections */
@media (min-width: 768px) {
  .service-layout {
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
  }
  
  .service-left {
    order: 1;
  }
  
  .service-right {
    order: 2;
  }
  
  .overview-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .service-visual {
    justify-content: center;
    order: 2;
  }
  
  .service-illustration {
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .service-section {
    padding: 120px 0;
  }
  
  .service-layout {
    grid-template-columns: 350px 1fr;
    gap: 100px;
  }
  
  .overview-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .service-illustration {
    max-width: 100%;
    width: 100%;
  }
  
  .characteristic-item {
    font-size: 1.4rem;
  }
  
  .service-title {
    margin-bottom: 50px;
  }
}

@media (min-width: 1440px) {
  .service-layout {
    grid-template-columns: 400px 1fr;
    gap: 100px;
  }
  
  .overview-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .service-illustration {
    max-width: 100%;
    width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .service-section {
    padding: 80px 0;
  }
  
  .service-title {
    margin-bottom: 40px;
  }
  
  .service-layout {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .characteristic-item {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .right-for-you {
    padding: 28px 24px;
  }
  
  .service-illustration {
    max-width: 300px;
  }
  
  .service-overview {
    padding-top: 45px;
    margin-top: 15px;
  }
  
  .overview-content {
    gap: 30px;
  }
}

/* END SERVICES PAGE STYLES */

/* ===== MODERN SAAS CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #fafbff 0%, #f8fafc 100%);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

/* Contact container alignment - matches navbar container */
.contact-container {
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

/* Left Column - Contact Info */
.contact-info {
  order: 2;
}

.contact-info-content {
  max-width: 500px;
  margin: 0;
}

.contact-title {
  font-family: var(--headings-text);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-align: left;
  letter-spacing: -0.02em;
}

.contact-description {
  font-family: var(--body-text);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 40px 0;
  text-align: left;
  font-weight: 400;
}

/* Contact Methods */
.contact-methods {
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.method-label {
  font-family: var(--body-text);
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.method-value {
  font-family: var(--body-text);
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-value:hover {
  color: var(--primary-color);
}

/* Service Categories */
.service-categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-category {
  border-left: 3px solid #e2e8f0;
  padding-left: 20px;
  transition: border-color 0.3s ease;
}

.service-category:hover {
  border-left-color: var(--primary-color);
}

.category-title {
  font-family: var(--headings-text);
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.category-desc {
  font-family: var(--body-text);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Right Column - Contact Form */
.contact-form-card {
  order: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 24px;
}

.form-title {
  font-family: var(--headings-text);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.form-subtitle {
  font-family: var(--body-text);
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--body-text);
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  font-weight: 400;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Input with Icon */
.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 2;
  pointer-events: none;
}

.form-input.with-icon {
  padding-left: 48px;
}

/* Phone Input */
.phone-input-wrapper {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.country-select {
  flex-shrink: 0;
  min-width: 120px;
  font-family: var(--body-text);
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  font-weight: 400;
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.country-select:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.country-select:hover {
  border-color: #cbd5e1;
}

.phone-input {
  flex: 1;
}

/* Textarea with Counter */
.textarea-wrapper {
  position: relative;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  padding-bottom: 40px;
}

.char-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--body-text);
  font-size: 0.8125rem;
  color: #9ca3af;
  font-weight: 500;
}

.char-limit {
  color: #d1d5db;
}

/* Submit Button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  z-index: 1;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9333ea, var(--primary-color));
  border-radius: 8px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.form-submit-btn:hover::before {
  transform: scale(1);
}

.form-submit-btn:hover .btn-text {
  transform: translateY(-2px);
}

.form-submit-btn:active {
  transform: translateY(0px) scale(0.98);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  position: relative;
  z-index: 3;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

/* Form Disclaimer */
.form-disclaimer {
  font-family: var(--body-text);
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
  margin-top: 16px;
  line-height: 1.4;
}

.form-disclaimer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form-disclaimer a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(139, 92, 246, 0.08));
  pointer-events: none;
  animation: float-gentle 20s ease-in-out infinite;
}

.floating-shape.shape-1 {
  top: 10%;
  right: 8%;
  width: 200px;
  height: 200px;
  opacity: 0.6;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg) scale(0.95);
  }
  75% {
    transform: translateY(-30px) rotate(3deg) scale(1.02);
  }
}

/* Contact container responsive alignment - matches navbar exactly */
@media (min-width: 640px) {
  .contact-container {
    padding: 0 30px;
  }
}

@media (min-width: 768px) {
  .contact-container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .contact-container {
    max-width: 1400px;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-inner {
    gap: 40px;
  }
  
  .contact-title {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .contact-description {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .contact-methods {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .service-categories {
    gap: 24px;
  }
  
  .contact-form-card {
    padding: 24px;
    margin: 0 auto;
    max-width: calc(100vw - 32px);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    gap: 14px;
  }
  
  .phone-input-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  
  .country-select {
    min-width: 100%;
    width: 100%;
    font-size: 16px;
    padding: 14px 40px 14px 16px;
  }
}

@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .contact-info {
    order: 1;
  }
  
  .contact-form-card {
    order: 2;
    margin: 0;
  }
  
  .phone-input-wrapper {
    flex-direction: row;
    gap: 12px;
  }
  
  .country-select {
    min-width: 120px;
    width: auto;
    font-size: 1rem;
    padding: 12px 40px 12px 16px;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 0;
  }
  
  .contact-inner {
    gap: 60px;
  }
  
  .contact-form-card {
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .floating-shape {
    animation: none;
  }
  
  .form-submit-btn:hover {
    transform: none;
  }
  
  .form-submit-btn::before {
    transition: none;
  }
}

/* END CONTACT PAGE STYLES */
  margin-bottom: 24px;
}

.form-title {
  font-family: var(--headings-text);
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 6px 0;
}

.form-subtitle {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--highlight-color);
  margin: 0;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blacktext-color);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--body-text);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blacktext-color);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(102, 102, 102, 0.7);
}

/* Phone Input Special Styling */
.phone-input-wrapper {
  display: flex;
  gap: 8px;
}

.country-select {
  flex-shrink: 0;
  width: 100px;
  font-size: 0.9rem;
  cursor: pointer;
}

.phone-input {
  flex: 1;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--body-text);
}

/* Submit Button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--primary-color);
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #9333ea;
  transform: translateY(-1px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.btn-text {
  position: relative;
}

.btn-arrow {
  position: relative;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(2px);
}


/* Floating Background Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(147, 51, 234, 0.05));
  pointer-events: none;
  animation: float-shapes 15s ease-in-out infinite;
}

.floating-shape.shape-1 {
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.floating-shape.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
  animation-duration: 18s;
}

.floating-shape.shape-3 {
  top: 60%;
  right: 5%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
  animation-duration: 20s;
}

@keyframes float-shapes {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-25px) rotate(3deg);
  }
}

/* Responsive Design */

/* Accessibility and Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .floating-shape {
    animation: none;
  }
  
  .contact-item:hover {
    transform: none;
  }
  
  .form-submit-btn:hover {
    transform: none;
  }
  
  .form-submit-btn:hover .btn-arrow {
    transform: none;
  }
  
  .contact-icon:hover {
    transform: none;
  }
}

/* END CONTACT PAGE STYLES */

/* START CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
  background: var(--background-color);
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
}

.contact-badge span {
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-hero-title {
  font-family: var(--headings-text);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 30px 0;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--blacktext-color);
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.4s forwards;
}

.contact-hero-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.6;
  color: var(--highlight-color);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  background: var(--background-color);
}

.contact-inner {
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Column */
.contact-info-column {
  order: 2;
}

.contact-info-title {
  font-family: var(--headings-text);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 24px 0;
}

.contact-intro {
  font-family: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0 0 40px 0;
}

/* Contact Methods */
.contact-methods {
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.method-info {
  flex: 1;
}

.method-title {
  font-family: var(--headings-text);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blacktext-color);
  margin: 0 0 4px 0;
}

.method-link {
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--secondary-color);
}

.method-text {
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: var(--highlight-color);
}

/* Contact Testimonial */
.contact-testimonial {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(147, 51, 234, 0.08));
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.testimonial-text {
  font-family: var(--body-text);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--blacktext-color);
  margin: 0 0 24px 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1rem;
}

.author-name {
  font-family: var(--headings-text);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blacktext-color);
  display: block;
}

.author-company {
  font-family: var(--body-text);
  font-size: 0.85rem;
  color: var(--highlight-color);
  display: block;
}

/* Contact Form Column */
.contact-form-column {
  order: 1;
}

.contact-form-wrapper {
  background: #f8f4ff;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
}

.form-header {
  margin-bottom: 32px;
  text-align: center;
}

.form-title {
  font-family: var(--headings-text);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 8px 0;
}

.form-subtitle {
  font-family: var(--body-text);
  font-size: 1rem;
  color: var(--highlight-color);
  margin: 0;
}

/* Form Elements */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--headings-text);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blacktext-color);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: 12px;
  background: white;
  font-family: var(--body-text);
  font-size: 1rem;
  color: var(--blacktext-color);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-select {
  cursor: pointer;
}

/* Form Submit Button */
.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--headings-text);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(2px);
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  color: #10b981;
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--headings-text);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
}

.success-text {
  font-family: var(--body-text);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0;
}

/* Contact FAQ Section */
.contact-faq {
  padding: 80px 0;
  background: var(--background-color);
}

.contact-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Footer CTA Section */
.contact-footer-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(147, 51, 234, 0.05));
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-cta-title {
  font-family: var(--headings-text);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
}

.footer-cta-description {
  font-family: var(--body-text);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0 0 32px 0;
}

.footer-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.footer-cta-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.footer-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.footer-cta-btn--secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.footer-cta-btn--secondary:hover {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  
  .contact-info-column {
    order: 1;
  }
  
  .contact-form-column {
    order: 2;
  }
  
  .form-header {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .contact-main {
    padding: 100px 0;
  }
  
  .contact-layout {
    gap: 100px;
  }
  
  .contact-form-wrapper {
    padding: 48px;
  }
}

@media (min-width: 1440px) {
  .contact-layout {
    gap: 120px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .contact-hero {
    padding: 100px 0 40px;
    min-height: 50vh;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-layout {
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 28px;
    border-radius: 16px;
  }
  
  .contact-testimonial {
    padding: 24px;
  }
  
  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* END CONTACT PAGE STYLES */

/* START HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 0;
  margin-bottom: 0;
  background: var(--background-color);
}

/* Background Elements */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg__gradient {
  display: none;
}

@keyframes gradient-float {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-bg__particles {
  display: none;
}

@keyframes particles-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, -80px);
  }
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08),
    rgba(147, 51, 234, 0.04)
  );
  animation: float-shapes 12s ease-in-out infinite;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  top: 70%;
  left: 5%;
  animation-delay: -4s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 40%;
  left: 80%;
  animation-delay: -8s;
}

/* Additional Decorative Elements */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 25%;
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  transform: rotate(45deg);
  animation: float-square 8s ease-in-out infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float-square {
  0%, 100% { transform: rotate(45deg) translateY(0px); }
  50% { transform: rotate(45deg) translateY(-15px); }
}

/* Subtle Grid Pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: 1;
}

@keyframes float-shapes {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
    opacity: 0.5;
  }
  66% {
    transform: translateY(10px) rotate(240deg);
    opacity: 0.4;
  }
}

/* Hero Layout */
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
  text-align: center;
}

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


/* Hero Headlines - BOLD & IMPACTFUL */
.hero-headline {
  margin-bottom: 30px;
}

.hero-title {
  font-family: var(--headings-text);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-align: left;
  font-size: clamp(1.75rem, 8vw, 4.5rem);
  color: var(--blacktext-color);
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.2s forwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title--accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
  margin-top: 0.2em;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient-text {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}

.hero-description {
  font-family: var(--body-text);
  font-size: clamp(0.95rem, 4vw, 1.3rem);
  line-height: 1.5;
  color: var(--highlight-color);
  font-weight: 400;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 0.6s forwards;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text-highlight {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.6;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Modern CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 1s forwards;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  min-width: clamp(140px, 40vw, 180px);
  z-index: 1;
  white-space: nowrap;
}

.cta-btn__text {
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}

.cta-btn__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Primary Button */
.cta-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.cta-btn--primary .cta-btn__bg {
  background: linear-gradient(135deg, #9333ea, var(--primary-color));
  transform: translateY(100%);
}

.cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.cta-btn--primary:hover .cta-btn__bg {
  transform: translateY(0%);
}

.cta-btn--primary:hover .cta-btn__text {
  transform: translateY(-2px);
}

/* Secondary Button */
.cta-btn--secondary {
  background: transparent;
  color: var(--blacktext-color);
  border: 2px solid rgba(124, 58, 237, 0.2);
  backdrop-filter: blur(10px);
}

.cta-btn--secondary .cta-btn__bg {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  transform: scale(0);
  border-radius: 50px;
}

.cta-btn--secondary:hover {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.cta-btn--secondary:hover .cta-btn__bg {
  transform: scale(1);
}

.cta-btn--secondary:hover .cta-btn__text {
  transform: translateY(-2px);
}

/* Trust Elements */
.hero-trust {
  margin-top: 40px;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 1.4s forwards;
}

.trust-text {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: var(--highlight-color);
  font-weight: 500;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}

.client-avatar {
  position: relative;
  z-index: 1;
}

.client-avatar:not(:first-child) {
  margin-left: -12px;
}

.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 16px;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Individual avatar colors */
.avatar-1 {
  background: linear-gradient(135deg, #FF6B6B, #FF5722);
}

.avatar-2 {
  background: linear-gradient(135deg, #4ECDC4, #26A69A);
}

.avatar-3 {
  background: linear-gradient(135deg, #45B7D1, #2196F3);
}

.avatar-4 {
  background: linear-gradient(135deg, #96CEB4, #4CAF50);
}

.avatar-5 {
  background: linear-gradient(135deg, #FFEAA7, #FDCB6E);
}

.hero-location {
  font-family: var(--body-text);
  font-size: 0.85rem;
  color: var(--highlight-color);
  margin: 0;
  opacity: 0.8;
}

/* Hero Visual - SVG Illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.hero-vector {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.hero-mockups {
  position: relative;
  opacity: 0;
  animation: fade-slide-up 0.8s ease-out 1.2s forwards;
}

.mockup-container {
  position: relative;
  width: 400px;
  height: 300px;
}

.mockup {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.mockup--primary {
  top: 0;
  left: 0;
  width: 280px;
  height: 200px;
  z-index: 3;
}

.mockup--secondary {
  top: 50px;
  right: 0;
  width: 200px;
  height: 140px;
  z-index: 2;
}

.mockup--tertiary {
  bottom: 0;
  left: 60px;
  width: 160px;
  height: 120px;
  z-index: 1;
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
}

.mockup:hover .mockup-overlay {
  opacity: 1;
}

/* COMPREHENSIVE RESPONSIVE DESIGN */

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero-inner {
    gap: 30px;
    min-height: auto;
  }

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

  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .hero-description {
    font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    line-height: 1.4;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: auto;
  }

  .hero-trust {
    margin-top: 24px;
  }

  .trust-text {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .client-avatars {
    justify-content: flex-start;
  }

  .avatar-placeholder {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .client-avatar:not(:first-child) {
    margin-left: -8px;
  }

  .hero-location {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .hero-visual {
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-vector {
    width: 100%;
    height: auto;
    min-width: 320px;
    max-height: 400px;
    object-fit: contain;
  }

  .mockup-container {
    width: 280px;
    height: 200px;
    margin: 0 auto;
  }

  .mockup--primary {
    width: 220px;
    height: 150px;
  }

  .mockup--secondary {
    width: 160px;
    height: 110px;
    top: 40px;
  }

  .mockup--tertiary {
    width: 120px;
    height: 90px;
    left: 40px;
  }
}

/* Mobile (≤480px) - Base styles already defined above */

/* Mobile Large & Small Tablet (481px - 640px) */
@media (min-width: 481px) {
    .hero {
        padding: 90px 0 70px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    }

    .hero-description {
        font-size: 1.15rem;
        max-width: 500px;
        text-align: left;
    }

    .hero-visual {
        margin-bottom: 70px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-vector {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: contain;
    }

    .mockup-container {
        width: 350px;
        height: 260px;
    }

    .cta-btn {
        font-size: 17px;
        padding: 15px 30px;
        min-width: 160px;
    }

    .client-avatars {
        justify-content: flex-start;
    }

    .client-avatar:not(:first-child) {
        margin-left: -10px;
    }
}

/* Tablet (640px - 768px) */
@media (min-width: 640px) {
    .hero {
        padding: 100px 0 80px;
        min-height: 90vh;
    }

    /* Keep content left-aligned */
    .hero-content {
        text-align: left;
    }

    .hero-title {
        text-align: left;
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .hero-cta {
        align-items: flex-start;
        flex-direction: row;
        gap: 20px;
    }

    /* Keep single column layout */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 550px;
        line-height: 1.6;
    }

    .cta-btn {
        font-size: 17px;
        padding: 16px 32px;
        min-width: 170px;
    }

    .hero-visual {
        margin-bottom: 80px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-illustration {
        max-width: 500px;
    }

    .hero-vector {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    .mockup-container {
        width: 450px;
        height: 320px;
    }

    .client-avatars {
        justify-content: flex-start;
    }
}

/* Large Tablet (768px - 1024px) */
@media (min-width: 768px) {
    .hero {
        padding: 110px 0 90px;
        min-height: 95vh;
    }

    /* Center all content */
    .hero-content {
        text-align: center;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(3.2rem, 6vw, 5.2rem);
        margin-bottom: 24px;
    }

    .hero-cta {
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }

    /* Keep single column layout centered */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .hero-description {
        font-size: 1.3rem;
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }

    .cta-btn {
        font-size: 18px;
        padding: 17px 34px;
        min-width: 180px;
    }

    .hero-visual {
        margin-bottom: 90px;
        justify-content: center;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-illustration {
        max-width: 550px;
    }

    .hero-vector {
        width: 100%;
        height: auto;
        max-height: 440px;
        object-fit: contain;
    }

    .mockup-container {
        width: 500px;
        height: 350px;
    }

    /* Center trust elements */
    .hero-trust {
        text-align: center;
    }

    .client-avatars {
        justify-content: center;
    }

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

/* Small Desktop (1024px - 1440px) */
@media (min-width: 1024px) {
  .hero {
    padding: 120px 0 100px;
    min-height: 100vh;
  }

  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    text-align: left;
  }

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

  .hero-title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    text-align: left;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-description {
    font-size: 1.25rem;
    max-width: 520px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
  }

  .hero-cta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 40px;
  }

  .cta-btn {
    font-size: 18px;
    padding: 18px 36px;
    min-width: 190px;
  }

  .hero-visual {
    margin-top: 0;
    justify-content: flex-end;
    max-width: 500px;
  }

  .hero-illustration {
    max-width: 600px;
    width: 100%;
  }

  .hero-vector {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
  }

  .mockup-container {
    width: 500px;
    height: 380px;
  }

  /* Left-align trust elements */
  .hero-trust {
    text-align: left;
  }

  .client-avatars {
    justify-content: flex-start;
  }

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

/* Large Desktop (>1440px) - UPDATED FOR BIGGER IMAGE */
@media (min-width: 1440px) {
  .hero {
    padding: 100px 0 120px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .hero-visual {
    max-width: none;
    width: 100%;
  }

  .hero-illustration {
    max-width: 650px;
    width: 100%;
  }

  .hero-vector {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
  }

  .hero-intro__text {
    font-size: 22px;
  }

  .wave-emoji {
    font-size: 24px;
  }

  .word-animated,
  .word-gradient {
    font-size: clamp(4.2rem, 4.5vw, 6rem);
    margin-right: 35px;
  }

  .hero-description {
    font-size: 20px;
    max-width: 520px;
    line-height: 1.7;
  }

  .cta-btn {
    font-size: 17px;
    padding: 18px 36px;
    min-width: 180px;
  }

  .avatar-img {
    width: 422px;
    height: 422px;
  }

  .hero-title__line:first-child {
    margin-bottom: 15px;
  }
}

/* Ultra-wide screens (>1920px) */
@media (min-width: 1920px) {
  .hero {
    padding: 120px 0 140px;
  }

  .hero-inner {
    max-width: 1600px;
    gap: 160px;
  }

  .hero-visual {
    max-width: 600px;
  }

  .hero-illustration {
    max-width: 700px;
    width: 100%;
  }

  .hero-vector {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
  }

  .word-animated,
  .word-gradient {
    font-size: 6.5rem;
    margin-right: 45px;
  }

  .hero-description {
    font-size: 22px;
    max-width: 580px;
  }

  .cta-btn {
    font-size: 18px;
    padding: 20px 40px;
    min-width: 200px;
  }

  .avatar-img {
    width: 458px;
    height: 458px;
  }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  .hero-bg__gradient,
  .hero-bg__particles,
  .floating-shape,
  .wave-emoji,
  .word-animated,
  .word-gradient,
  .hero-description,
  .hero-cta,
  .hero-avatar,
  .avatar-glow {
    animation: none !important;
  }

  .word-animated,
  .word-gradient,
  .hero-description,
  .hero-cta,
  .hero-avatar {
    opacity: 1;
    transform: none;
  }
}

/* END HERO */

/* START RECENT PROJECTS SHOWCASE SECTION */
.recent-projects-showcase {
  background: var(--background-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Floating Background Shapes */
.recent-projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.recent-floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.04),
    rgba(147, 51, 234, 0.02)
  );
  animation: recent-float-shapes 15s ease-in-out infinite;
  opacity: 0.5;
}

.recent-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.recent-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation-delay: -5s;
}

.recent-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 85%;
  animation-delay: -10s;
}

.recent-shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  left: 15%;
  animation-delay: -7s;
}

@keyframes recent-float-shapes {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
    opacity: 0.5;
  }
  66% {
    transform: translateY(20px) translateX(-15px) rotate(240deg);
    opacity: 0.4;
  }
}

.recent-projects-showcase-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

/* Header Styling */
.recent-projects-header {
  text-align: center;
  margin-bottom: 50px;
}

.recent-projects-main-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
}

.recent-projects-subtitle {
  font-family: var(--body-text);
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--highlight-color);
  margin: 0;
  font-weight: 400;
}

/* Projects Grid */
.recent-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 70px;
}

/* Project Card */
.recent-project-card {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 2px solid transparent;
}

.recent-project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.4);
}

/* Thumbnail */
.recent-project-thumbnail {
  width: 100%;
  height: 350px;
  background: transparent;
  overflow: hidden;
  position: relative;
}

.recent-project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Project Info */
.recent-project-info {
  padding: 24px 28px;
}

.recent-project-name {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--blacktext-color);
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.recent-project-card:hover .recent-project-name {
  color: var(--primary-color);
}

.recent-project-description {
  font-family: var(--body-text);
  font-size: 0.9375rem;
  color: var(--highlight-color);
  margin: 0;
  line-height: 1.6;
}

/* CTA Button Wrapper */
.recent-projects-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.recent-projects-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

/* Primary Button */
.recent-projects-cta-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  color: white;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.recent-projects-cta-btn--primary .cta-btn__bg {
  background: linear-gradient(135deg, #9333ea, var(--primary-color));
}

.recent-projects-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

/* Secondary Button */
.recent-projects-cta-btn--secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.recent-projects-cta-btn--secondary .cta-btn__bg {
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
}

.recent-projects-cta-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
  color: white;
  border-color: transparent;
}

.recent-projects-cta-btn .cta-btn__text {
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}

.recent-projects-cta-btn .cta-btn__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, #9333ea, var(--primary-color));
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.recent-projects-cta-btn:hover .cta-btn__bg {
  transform: translateY(0%);
}

.recent-projects-cta-btn:hover .cta-btn__text {
  transform: translateY(-2px);
}

/* Tablet Responsive */
@media (min-width: 768px) {
  .recent-projects-showcase {
    padding: 100px 0;
  }

  .recent-projects-header {
    margin-bottom: 70px;
  }

  .recent-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .recent-project-thumbnail {
    height: 380px;
  }

  .recent-project-info {
    padding: 28px 32px;
  }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
  .recent-projects-showcase {
    padding: 120px 0;
  }

  .recent-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
  }

  .recent-project-thumbnail {
    height: 340px;
  }

  .recent-project-info {
    padding: 28px 32px;
  }

  .recent-project-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .recent-project-description {
    font-size: 1rem;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .recent-projects-grid {
    gap: 60px;
  }

  .recent-project-thumbnail {
    height: 400px;
  }

  .recent-project-info {
    padding: 32px 36px;
  }

  .recent-project-name {
    font-size: 1.625rem;
  }

  .recent-project-description {
    font-size: 1.0625rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .recent-project-card,
  .recent-project-thumbnail img,
  .recent-project-name,
  .recent-projects-cta-btn,
  .recent-projects-cta-btn .cta-btn__text,
  .recent-projects-cta-btn .cta-btn__bg {
    transition: none !important;
  }

  .recent-project-card:hover,
  .recent-project-card:hover .recent-project-thumbnail img,
  .recent-projects-cta-btn:hover,
  .recent-projects-cta-btn:hover .cta-btn__text,
  .recent-projects-cta-btn:hover .cta-btn__bg {
    transform: none !important;
  }
}
/* END RECENT PROJECTS SHOWCASE SECTION */

/* START WHY CHOOSE ME SECTION */
/* Why Choose Me Section - Redesigned to match reference image */
.why-choose {
  position: relative;
  background: var(--background-color);
  padding: 100px 0;
  overflow: hidden;
}

.why-choose-inner {
  position: relative;
  z-index: 10;
}

/* Header Section */
.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--body-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  margin-bottom: 20px;
}

.why-choose-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text 4s ease-in-out infinite;
}

/* Card Layout - 2 columns for desktop, 1 for mobile */
.why-choose-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Why Choose Card Styling - Horizontal layout with image on left */
.why-card {
  background: white;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 200px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
  border-color: var(--primary-color);
}

/* Card Image Area - Left side of the card */
.card-image {
  position: relative;
  width: 180px;
  min-width: 180px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.card-image svg {
  width: 100%;
  height: auto;
  max-width: 160px;
  max-height: 180px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.why-card:hover .card-image svg {
  opacity: 1;
}

/* Card Content - Right section with proper spacing */
.card-content {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  text-align: left;
}

/* Small Icon in Content Area - Using color palette */
.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.why-card:hover .card-icon {
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-1px);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

/* Card Title - Enhanced typography */
.card-title {
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--blacktext-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Card Description - Improved readability */
.card-description {
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: var(--highlight-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design - Enhanced */

/* Mobile - Single column, hide vector images */
@media (max-width: 767px) {
  .why-choose {
    padding: 80px 0;
  }
  
  .why-choose-header {
    margin-bottom: 40px;
  }
  
  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-card {
    min-height: auto;
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    flex-direction: column;
  }
  
  /* Show vector images on mobile */
  .card-image {
    display: flex;
    width: 100%;
    min-width: auto;
    padding: 24px 24px 16px 24px;
    justify-content: center;
  }
  
  .card-image svg {
    max-width: 140px;
    max-height: 120px;
  }
  
  .card-content {
    padding: 16px 24px 24px 24px;
    text-align: center;
    justify-content: flex-start;
  }
  
  .card-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .card-description {
    font-size: 0.9rem;
    text-align: center;
  }
}

/* Tablet and Desktop - 2 columns with horizontal layout */
@media (min-width: 768px) {
  .why-choose {
    padding: 90px 0;
  }
  
  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-card {
    min-height: 200px;
    flex-direction: row;
    align-items: stretch;
  }
  
  .card-image {
    width: 160px;
    min-width: 160px;
    display: flex;
  }
  
  .card-image svg {
    max-width: 140px;
    max-height: 120px;
  }
  
  .card-content {
    padding: 20px 20px 20px 0;
    justify-content: center;
  }
  
  .card-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .card-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Large Desktop - Enhanced 2 columns with better spacing */
@media (min-width: 1025px) {
  .why-choose {
    padding: 120px 0;
  }
  
  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
  }
  
  .why-card {
    min-height: 220px;
  }
  
  .card-image {
    width: 180px;
    min-width: 180px;
  }
  
  .card-image svg {
    max-width: 160px;
    max-height: 140px;
  }
  
  .card-content {
    padding: 24px 24px 24px 0;
  }
  
  .card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .card-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Ultra-wide Desktop - Premium 2 columns layout */
@media (min-width: 1440px) {
  .why-choose {
    padding: 140px 0;
  }
  
  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
  }
  
  .why-card {
    min-height: 240px;
  }
  
  .card-image {
    width: 200px;
    min-width: 200px;
    padding: 24px;
  }
  
  .card-image svg {
    max-width: 180px;
    max-height: 160px;
  }
  
  .card-content {
    padding: 28px 28px 28px 0;
  }
  
  .card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .card-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .why-choose::before,
  .why-choose::after,
  .title-highlight {
    animation: none;
  }
  
  .why-choose-card,
  .card-icon,
  .card-cta {
    transition: none;
  }
  
  .why-choose-card:hover {
    transform: none;
  }
}

/* Simplified Why Choose CTA Section */
.why-choose-cta {
  position: relative;
  margin-top: 80px;
  text-align: center;
  z-index: 10;
  width: calc(100% - 40px);
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(124, 58, 237, 0.02);
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  box-sizing: border-box;
}

/* Content Styling */
.why-choose-cta-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Simplified Title */
.why-choose-cta-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.3;
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
  text-align: center;
}

/* Description */
.why-choose-cta-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0 auto 32px auto;
  max-width: 550px;
  text-align: center;
}

/* Button Container */
.why-choose-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Simplified Why Choose Buttons - Similar to Benefits Style */
.why-choose-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
  min-width: 160px;
  text-decoration: none;
}

/* Primary Why Choose Button */
.why-choose-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
  color: white;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
  border: 2px solid transparent;
}

.why-choose-btn--primary .btn-bg {
  background: linear-gradient(135deg, #9333EA, var(--primary-color));
}

.why-choose-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
  color: white;
}

.why-choose-btn--primary:hover .btn-bg {
  transform: scale(1);
}

/* Secondary Why Choose Button */
.why-choose-btn--secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.why-choose-btn--secondary .btn-bg {
  background: var(--primary-color);
}

.why-choose-btn--secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
  color: white;
}

.why-choose-btn--secondary:hover .btn-bg {
  transform: scale(1);
}

/* Shared Why Choose Button Elements */
.why-choose-btn .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.why-choose-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-choose-btn:active {
  transform: translateY(0px) scale(0.98);
}
  background: rgba(124, 58, 237, 0.1);
}

.why-choose-btn--secondary:hover .btn-bg {
  transform: scale(1);
}

/* Trust Indicator Styles */
.cta-trust-indicator {
  margin-top: 32px;
  opacity: 0.9;
}

.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
}

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

.stat-number {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-family: var(--body-text);
  font-size: 0.75rem;
  color: var(--highlight-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.3), transparent);
}

/* Shared Why Choose Button Elements */
.why-choose-btn .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.why-choose-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.why-choose-btn:active {
  transform: translateY(0px) scale(0.98);
}

/* Responsive Design for Simplified Why Choose CTA */
@media (max-width: 767px) {
  .why-choose-cta {
    margin-top: 40px;
    padding: 32px 16px;
    margin-left: 16px;
    margin-right: 16px;
    width: calc(100% - 32px);
    border-radius: 12px;
  }
  
  .why-choose-cta-content {
    max-width: 100%;
    width: 100%;
  }
  
  .why-choose-cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
  }
  
  .why-choose-cta-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .why-choose-cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
  }
  
  .why-choose-btn {
    width: 100%;
    max-width: 260px;
    min-width: auto;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    border-radius: 16px;
  }
  
  .stat-item {
    flex: none;
    min-width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  
  .stat-number {
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .stat-label {
    font-size: 0.65rem;
    font-weight: 500;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.3), transparent);
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .why-choose-cta {
    margin-top: 80px;
    padding: 50px 24px;
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }
  
  .why-choose-cta-buttons {
    gap: 20px;
    justify-content: center;
    flex-direction: row;
  }
  
  .why-choose-btn {
    padding: 18px 32px;
    min-width: 180px;
    max-width: none;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .why-choose-cta {
    margin-top: 100px;
    padding: 60px 40px;
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
  
  .why-choose-cta-buttons {
    justify-content: center;
  }
}

/* Accessibility for Simplified Why Choose Buttons */
@media (prefers-reduced-motion: reduce) {
  .why-choose-btn {
    transition: none;
  }
  
  .why-choose-btn:hover {
    transform: none;
  }
  
  .why-choose-btn .btn-bg {
    transition: none;
  }
}

/* END WHY CHOOSE ME SECTION */

/* START MISSION SECTION */
.mission {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 120px 0;
    margin-top: 0;
    overflow: hidden;
}

/* Background Elements - Same as Hero */
.mission::before {
    display: none;
}

.mission::after {
    display: none;
}

/* Floating Shapes - Same as Hero */
.mission .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(147, 51, 234, 0.03));
    animation: float-shapes 15s ease-in-out infinite;
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.04);
    z-index: 3;
}

.mission .shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.mission .shape-2 {
    width: 80px;
    height: 80px;
    top: 75%;
    left: 10%;
    animation-delay: -6s;
}

.mission .shape-3 {
    width: 100px;
    height: 100px;
    top: 45%;
    right: 5%;
    animation-delay: -10s;
}

/* Mission Decorative Elements */
.mission-inner::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    border-style: dashed;
    animation: rotate-slow 25s linear infinite reverse;
    z-index: 2;
}

.mission-inner::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.08), rgba(147, 51, 234, 0.04));
    border-radius: 12px;
    transform: rotate(-15deg);
    animation: gentle-bob 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes gentle-bob {
    0%, 100% { transform: rotate(-15deg) translateY(0px); }
    50% { transform: rotate(-15deg) translateY(-10px); }
}

/* Subtle accent lines */
.mission::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 2;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    opacity: 0.2;
    z-index: 2;
}

.mission-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

.mission-label {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--body-text);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mission-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-badge:hover::before {
    left: 100%;
}

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

/* Main Mission Text */
.mission-text {
    font-family: var(--headings-text);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    color: var(--blacktext-color);
}
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 40px;
}

/* Main Reveal Text */
.reveal-text {
  font-family: var(--headings-text);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}
/* Individual Words */
.reveal-word {
    display: inline-block;
    margin: 0 0.2em 0.1em 0;
    color: var(--highlight-color);
    opacity: 0.2;
    transition: all 0.6s ease-out;
    position: relative;
}

/* Glow States - Minimalistic */
.reveal-word.glow-1 {
    opacity: 0.4;
}

.reveal-word.glow-2 {
    opacity: 0.6;
}

.reveal-word.glow-3 {
    opacity: 0.8;
    color: var(--blacktext-color);
}

.reveal-word.glow-full {
    opacity: 1;
    color: var(--blacktext-color);
}

/* Responsive Design */
@media (min-width: 640px) {
    .mission {
        padding: 140px 0;
    }

    .mission-text {
        font-size: clamp(2rem, 4.5vw, 4rem);
    }

    .mission-inner {
        gap: 50px;
    }
}

@media (min-width: 768px) {
    .mission {
        padding: 160px 0;
    }

    .mission-text {
        font-size: clamp(2.2rem, 4vw, 4.2rem);
        line-height: 1.2;
    }

    .mission-inner {
        gap: 60px;
    }
}

@media (min-width: 1024px) {
    .mission {
        padding: 180px 0;
    }

    .mission-inner {
        grid-template-columns: auto 1fr;
        gap: 80px;
        text-align: left;
        align-items: center;
    }

    .mission-label {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .mission-content {
        text-align: left;
    }

    .mission-text {
        font-size: clamp(2.5rem, 3.5vw, 4.5rem);
    }
}

@media (min-width: 1440px) {
    .mission-inner {
        gap: 120px;
    }

    .mission-text {
        font-size: clamp(2.8rem, 3vw, 5rem);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal-word {
        transition: opacity 0.3s ease;
    }
    
    .mission-badge::before {
        display: none;
    }

    .mission .floating-shape {
        animation: none;
    }

    .mission::before,
    .mission::after {
        animation: none;
    }
}

/* END MISSION SECTION */


/* START WORKFLOW SECTION */
.workflow {
    position: relative;
    background: var(--background-color);
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
}

/* Background Effects */
.workflow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Subtle Background Pattern */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

/* Subtle Glow Effects */
.glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03), transparent 70%);
    filter: blur(60px);
    animation: float-subtle 15s ease-in-out infinite;
}

.glow-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 10%;
    animation-delay: -5s;
}

.glow-orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    animation-delay: -10s;
}

@keyframes float-subtle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(20px); opacity: 0.1; }
}

/* Additional Workflow Decorations */
.workflow-inner::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.workflow-inner::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 25px;
    height: 25px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 4px;
    transform: rotate(30deg);
    animation: gentle-rotate 8s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

@keyframes gentle-rotate {
    0%, 100% { transform: rotate(30deg); }
    50% { transform: rotate(45deg); }
}

/* Main Content */
.workflow-inner {
    position: relative;
    z-index: 10;
}

.workflow-header {
    text-align: center;
    margin-bottom: 100px;
}

.workflow-title {
    font-family: var(--headings-text);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    margin: 0;
}

.title-primary {
    color: var(--blacktext-color);
    display: block;
    margin-bottom: 10px;
}

.title-accent {
    color: var(--primary-color);
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s ease-in-out infinite;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Timeline */
.workflow-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Timeline Connector */
.timeline-connector {
    position: relative;
    width: 1px;
    height: 100px;
    background: rgba(124, 58, 237, 0.2);
    margin: 0 auto;
}

/* Workflow Steps */
.workflow-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-right {
    justify-content: flex-start;
    flex-direction: row;
}

.step-left {
    justify-content: flex-start;
    flex-direction: row;
}

/* Radar Circle Design */
.step-circle {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

/* Radar Rings */
.step-circle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.1);
    z-index: -1;
}

.step-circle::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.05);
    z-index: -2;
}

.circle-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), rgba(147, 51, 234, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    z-index: 3;
}

.step-number {
    font-family: var(--headings-text);
    font-weight: 700;
    font-size: 2.2rem;
    color: white;
    z-index: 4;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-content {
    flex: 1;
    max-width: 450px;
}

.step-title {
    font-family: var(--headings-text);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--blacktext-color);
    margin-bottom: 15px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.step-description {
    font-family: var(--body-text);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--highlight-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workflow {
        padding: 80px 0;
    }
    
    .workflow-header {
        margin-bottom: 60px;
    }
    
    .workflow-step {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
        max-width: none;
    }
    
    /* Ensure circles always appear first (above content) */
    .workflow-step .step-circle {
        order: 1;
    }
    
    .workflow-step .step-content {
        order: 2;
        max-width: none;
    }
    
    .timeline-connector {
        height: 80px;
    }
    
    .step-circle {
        width: 120px;
        height: 120px;
    }
    
    .step-circle::before {
        top: -15px;
        left: -15px;
        width: 150px;
        height: 150px;
    }
    
    .step-circle::after {
        top: -30px;
        left: -30px;
        width: 180px;
        height: 180px;
    }
    
    .circle-glow {
        top: 15px;
        left: 15px;
        width: 90px;
        height: 90px;
    }
    
    .step-number {
        font-size: 2rem;
    }
}

@media (min-width: 640px) {
    .workflow {
        padding: 140px 0;
    }
    
    .workflow-header {
        margin-bottom: 120px;
    }
}

@media (min-width: 1024px) {
    .workflow {
        padding: 160px 0;
    }
    
    .workflow-timeline {
        max-width: 1000px;
    }
    
    .workflow-step {
        gap: 60px;
    }
    
    .step-content {
        max-width: 400px;
    }
}

@media (min-width: 1440px) {
    .workflow {
        padding: 180px 0;
    }
    
    .workflow-timeline {
        max-width: 1100px;
    }
    
    .step-content {
        max-width: 450px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .grid-overlay,
    .glow-orb,
    .title-accent,
    .circle-glow {
        animation: none;
    }
    
    .timeline-connector::before {
        filter: none;
    }
}

/* Workflow Scroll Animations */
.step-circle {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-circle.animate-in {
    opacity: 1;
    transform: scale(1);
}

.step-circle.animate-in::before {
    animation: radar-ring-1 2s ease-out 0.3s;
}

.step-circle.animate-in::after {
    animation: radar-ring-2 2s ease-out 0.6s;
}

/* Radar Ring Animations */
@keyframes radar-ring-1 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes radar-ring-2 {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* Radar Sweep Effect */
.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 270deg,
        rgba(124, 58, 237, 0.8) 320deg,
        rgba(124, 58, 237, 0.4) 360deg
    );
    opacity: 0;
    transform: rotate(-90deg);
    z-index: 1;
}

.radar-sweep.sweep-active {
    animation: radar-sweep 1.5s ease-in-out;
}

@keyframes radar-sweep {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(270deg);
    }
}

/* Glow Pulse Animation */
.circle-glow.glow-pulse {
    animation: intense-glow 1s ease-out;
}

@keyframes intense-glow {
    0% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.8);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }
}

/* Animation Classes */
.step-number.number-bounce {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.step-title.text-slide-in {
    opacity: 1;
    transform: translateY(0);
}

.step-description.text-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Effect on Hover */
.step-circle:hover .circle-glow {
    animation: hover-pulse 0.6s ease-out;
}

@keyframes hover-pulse {
    0% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.7);
    }
    100% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    }
}

/* Enhanced Number Visibility */
.step-circle:hover .step-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .step-circle,
    .step-number,
    .step-title,
    .step-description {
        transition: none;
    }
    
    .radar-sweep,
    .circle-glow.glow-pulse,
    .step-circle:hover .circle-glow,
    .step-circle.animate-in::before,
    .step-circle.animate-in::after {
        animation: none;
    }
    
    .step-circle {
        opacity: 1;
        transform: scale(1);
    }
    
    .step-number {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    
    .step-title,
    .step-description {
        opacity: 1;
        transform: translateY(0);
    }
}

/* END WORKFLOW SECTION */

/* START FAQ SECTION */
.faq {
  position: relative;
  background: var(--background-color);
  padding: 120px 0;
  overflow: hidden;
}

.faq-inner { position: relative; z-index: 10; }

.faq-header { 
  margin-bottom: 40px; 
  text-align: center;
}
.faq-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0 0 8px 0;
}
.faq-subtitle {
  font-family: var(--body-text);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--highlight-color);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* List */
.faq-list { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(124,58,237,0.15);
  box-shadow: 0 6px 20px rgba(124,58,237,0.06);
  overflow: hidden;
}

/* Question button */
.faq-question {
  width: 100%;
  padding: 18px 18px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blacktext-color);
  transition: background 0.25s ease, transform 0.2s ease;
}
.faq-question:hover { background: rgba(124,58,237,0.04); transform: translateY(-1px); }
.faq-question:focus { outline: 2px solid rgba(124,58,237,0.35); outline-offset: 2px; }

.faq-question-text {
  text-align: left;
  flex: 1;
}

/* Plus/Minus Icon */
.faq-icon { position: relative; width: 28px; height: 28px; border-radius: 50%; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-line { position:absolute; background: var(--primary-color); border-radius: 1px; transition: transform 0.25s ease, opacity 0.25s ease; }
.icon-line--h { width: 12px; height: 2px; }
.icon-line--v { width: 2px; height: 12px; }
.faq-item.active .icon-line--v { transform: scaleY(0); opacity: 0; }

/* Answer panel */
.faq-answer { 
  height: 0; 
  overflow: hidden; 
  transition: height 0.35s ease; 
  background: rgba(124,58,237,0.02);
  border-top: 1px solid rgba(124,58,237,0.12);
}
.faq-answer p { 
  padding: 14px 20px 20px 20px; 
  font-family: var(--body-text); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  color: var(--highlight-color);
}

/* Animation on scroll (reuse pattern) */
.faq-item { opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq-item.animate-in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 767px) {
  .faq { padding: 90px 0; }
  .faq-list { gap: 12px; }
  .faq-question { padding: 16px; }
  .faq-answer p { padding: 12px 16px 16px 16px; }
}

@media (min-width: 1024px) {
  .faq { padding: 140px 0; }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer p {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item { transition: opacity 0.3s ease; transform: none; }
  .faq-answer { transition: none; }
}
/* END FAQ SECTION */

/* START IN-HOUSE FEELING SECTION */
.in-house-feeling {
  position: relative;
  background: var(--background-color);
  padding: 120px 0;
  overflow: hidden;
}

/* Subtle background elements */
.in-house-feeling::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: 1;
}

.in-house-inner {
  position: relative;
  z-index: 10;
}

.in-house-header {
  margin-bottom: 80px;
  text-align: left;
}

.in-house-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0;
}

/* Grid Layout */
.in-house-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0;
}

/* Features */
.in-house-feature {
  position: relative;
}

.feature-title {
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
  line-height: 1.3;
  position: relative;
}

/* Subtle color bar above each title */
.feature-title::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 0.8;
  transition: width 0.3s ease;
}

.in-house-feature:hover .feature-title::before {
  width: 60px;
}

.feature-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--highlight-color);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

/* Responsive Design */
@media (min-width: 640px) {
  .in-house-grid {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .in-house-feature:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .in-house-feeling {
    padding: 140px 0;
  }
  
  .in-house-header {
    margin-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .in-house-feeling {
    padding: 160px 0;
  }
  
  .in-house-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  
  .in-house-feature:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  
  .feature-title {
    margin-bottom: 20px;
  }
}

/* Subtle animations */
.in-house-feature {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.in-house-feature.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .in-house-feature {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

/* END IN-HOUSE FEELING SECTION */

/* START BUSINESS BENEFITS SECTION */
.business-benefits {
  position: relative;
  background: var(--background-color);
  padding: 140px 0 180px;
  overflow: hidden;
}

/* Subtle background effects */
.business-benefits::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.03), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float-gentle 12s ease-in-out infinite;
}

.business-benefits::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.02), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float-gentle 15s ease-in-out infinite reverse;
}

.benefits-inner {
  position: relative;
  z-index: 10;
}

/* Header */
.benefits-header {
  text-align: center;
  margin-bottom: 100px;
}

.benefits-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--body-text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.benefits-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  color: var(--blacktext-color);
  margin: 0;
}

/* Cards Container */
.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Cards */
.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%;
  height: auto;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
  border-color: var(--primary-color);
}

/* Card Numbers - Fixed positioning */
.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 1rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  z-index: 10;
  min-width: 32px;
  text-align: center;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 50px;
}

/* Business Benefits card title (dark text on white cards) */
.business-benefits .card-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: var(--blacktext-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Why Choose Me card title (dark text on white cards) */
.why-choose .card-title {
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--blacktext-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Business Benefits card description (dark text on white cards) */
.business-benefits .card-description {
  font-family: var(--body-text);
  font-size: 1.1rem;
  color: var(--highlight-color);
  line-height: 1.4;
  margin: 0 0 20px 0;
  flex: 1;
}

/* Desktop responsive styles for business-benefits cards on larger screens */
@media (min-width: 640px) {
  .business-benefits .card-title {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  }
  
  .business-benefits .card-description {
    font-size: 0.95rem;
  }
}

/* Mobile responsive styles for business-benefits cards on small screens */
@media (max-width: 400px) {
  .business-benefits .card-title {
    font-size: clamp(1.7rem, 4vw, 2rem);
  }
  
  .business-benefits .card-description {
    font-size: 1.25rem;
  }
}

/* Why Choose Me card description (dark text on white cards) */
.why-choose .card-description {
  font-family: var(--body-text);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--highlight-color);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* Simple Visual Containers */
.simple-visual {
  background: rgba(124, 58, 237, 0.04);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  margin-top: auto;
}

.visual-label {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  font-family: var(--headings-text);
}

/* Card 1: Growth Stat */
.growth-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.growth-stat .stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 2.2rem;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--headings-text);
  font-size: 1rem;
  font-weight: 500;
  color: var(--highlight-color);
  line-height: 1;
}

.growth-arrow {
  font-size: 2rem;
  color: #22c55e;
  transform: translateY(-2px);
}

/* Card 2: Revenue Bars */
.revenue-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 50px;
  justify-content: center;
  margin-bottom: 12px;
  padding: 0 20px;
}

.mini-bar {
  width: 14px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-radius: 3px 3px 0 0;
  min-height: 10px;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* Card 3: Trust Rating */
.trust-rating {
  text-align: center;
  margin-bottom: 12px;
}

.stars {
  font-size: 1.4rem;
  color: #fbbf24;
  display: block;
  margin-bottom: 6px;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--highlight-color);
  font-family: var(--headings-text);
}

.trust-badges-simple {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-family: var(--headings-text);
}

/* Card 4: SEO Rankings */
.ranking-visual {
  margin-bottom: 8px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-bottom: 4px;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.06);
}

.search-result.active {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.result-number {
  font-weight: 700;
  font-size: 0.9rem;
  color: #22c55e;
  min-width: 22px;
  font-family: var(--headings-text);
}

.result-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--highlight-color);
  font-family: var(--headings-text);
}

/* Card 5: Cost Comparison */
.cost-comparison {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cost-item {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
}

.cost-item.traditional {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cost-item.website {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cost-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--highlight-color);
  margin-bottom: 3px;
  font-family: var(--headings-text);
}

.cost-amount {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blacktext-color);
  font-family: var(--headings-text);
}

.vs-divider {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--highlight-color);
  font-family: var(--headings-text);
}

/* Card 6: Competition Bars */
.competition-bars {
  margin-bottom: 8px;
}

.competitor-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bar-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--highlight-color);
  min-width: 40px;
  font-family: var(--headings-text);
}

.bar-fill {
  height: 10px;
  border-radius: 5px;
  flex: 1;
  position: relative;
  transition: width 0.8s ease;
}

.bar-fill.professional {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.bar-fill.basic {
  background: linear-gradient(90deg, #6b7280, #4b5563);
}

.bar-percentage {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--highlight-color);
  min-width: 35px;
  text-align: right;
  font-family: var(--headings-text);
}

/* Responsive Design */

/* Extra Small Mobile - Ensure content fits properly */
@media (max-width: 420px) {
  .benefit-card {
    height: auto;
    min-height: 380px;
    padding: 24px 20px 20px;
  }
  
  .card-content {
    padding-right: 40px;
  }
  
  .business-benefits .card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .business-benefits .card-description {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  
  .simple-visual {
    padding: 12px;
    margin-top: 16px;
  }
  
  .visual-label {
    font-size: 0.8rem;
  }
  
  /* Make mini bars and other visual elements more compact */
  .revenue-bars {
    height: 40px;
    margin-bottom: 8px;
  }
  
  .mini-bar {
    width: 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .cost-comparison {
    margin-bottom: 6px;
  }
  
  .competition-bars {
    margin-bottom: 6px;
  }
  
  .competitor-bar {
    margin-bottom: 6px;
  }
}

/* Small Mobile - Better spacing for 420px+ screens */
@media (min-width: 421px) and (max-width: 639px) {
  .benefit-card {
    height: auto;
    min-height: 360px;
    padding: 26px 22px 22px;
  }
  
  .card-content {
    padding-right: 45px;
  }
}

@media (min-width: 640px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefit-card {
    height: 420px;
    min-height: auto;
  }
}

@media (min-width: 768px) {
  .business-benefits {
    padding: 160px 0 200px;
  }
  
  .benefits-header {
    margin-bottom: 120px;
  }
  
  .benefits-cards {
    gap: 24px;
  }
  
  .benefit-card {
    height: 420px;
    min-height: auto;
    padding: 32px 28px 28px;
  }
}

@media (min-width: 1024px) {
  .benefits-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .benefit-card {
    height: 400px;
    min-height: auto;
  }
}

@media (min-width: 1200px) {
  .benefits-cards {
    gap: 24px;
  }
}

@media (min-width: 1440px) {
  .business-benefits {
    padding: 180px 0 220px;
  }
  
  .benefits-cards {
    gap: 28px;
  }
  
  .benefit-card {
    height: 420px;
    min-height: auto;
    padding: 36px 32px 32px;
  }
}

/* Animation on scroll */
.benefit-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animate mini bars when card comes into view */
.benefit-card.animate-in .mini-bar {
  animation: mini-bar-grow 0.8s ease-out;
}

.benefit-card.animate-in .mini-bar:nth-child(1) {
  animation-delay: 0.2s;
}

.benefit-card.animate-in .mini-bar:nth-child(2) {
  animation-delay: 0.3s;
}

.benefit-card.animate-in .mini-bar:nth-child(3) {
  animation-delay: 0.4s;
}

.benefit-card.animate-in .mini-bar:nth-child(4) {
  animation-delay: 0.5s;
}

@keyframes mini-bar-grow {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--bar-height);
    opacity: 1;
  }
}

/* Animate competition bars */
.benefit-card.animate-in .bar-fill {
  animation: bar-fill-grow 1s ease-out 0.3s both;
}

@keyframes bar-fill-grow {
  from {
    width: 0;
  }
  to {
    width: var(--target-width);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .benefit-card {
    transition: opacity 0.3s ease;
    transform: none !important;
  }
  
  .benefit-card:hover {
    transform: none;
  }
  
  .mini-bar,
  .bar-fill {
    animation: none !important;
  }
  
  .benefit-card.animate-in .mini-bar,
  .benefit-card.animate-in .bar-fill {
    animation: none !important;
  }
}

/* Enhanced Benefits CTA Section */
.benefits-cta {
  position: relative;
  margin-top: 80px;
  text-align: center;
  z-index: 10;
  width: calc(100% - 40px);
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, 
    rgba(124, 58, 237, 0.04) 0%, 
    rgba(249, 250, 251, 1) 30%, 
    rgba(124, 58, 237, 0.03) 70%, 
    rgba(249, 250, 251, 1) 100%);
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
  box-sizing: border-box;
}

/* Feature Badges - Top differentiating element */
.benefits-feature-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  font-family: var(--body-text);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.feature-badge svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Content Styling */
.benefits-cta-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.benefits-cta-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.3;
  color: var(--blacktext-color);
  margin: 0 0 16px 0;
}

.benefits-cta-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--highlight-color);
  margin: 0 auto 32px auto;
  max-width: 550px;
}

.benefits-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Success Metrics - Bottom differentiating element */
.benefits-success-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.06);
}

.success-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.success-number {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  line-height: 1;
}

.success-label {
  font-family: var(--body-text);
  font-size: 0.7rem;
  color: var(--highlight-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.metric-separator {
  color: rgba(124, 58, 237, 0.4);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Benefits Buttons */
.benefits-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
  min-width: 160px;
  text-decoration: none;
}

/* Primary Benefits Button */
.benefits-btn--primary {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
  color: white;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
  border: 2px solid transparent;
}

.benefits-btn--primary .btn-bg {
  background: linear-gradient(135deg, #9333EA, var(--primary-color));
}

.benefits-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
  color: white;
}

.benefits-btn--primary:hover .btn-bg {
  transform: scale(1);
}

/* Secondary Benefits Button */
.benefits-btn--secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.benefits-btn--secondary .btn-bg {
  background: var(--primary-color);
}

.benefits-btn--secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
  color: white;
}

.benefits-btn--secondary:hover .btn-bg {
  transform: scale(1);
}

/* Shared Button Elements */
.benefits-btn .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.benefits-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.benefits-btn:active {
  transform: translateY(0px) scale(0.98);
}

/* Responsive Design for Enhanced Benefits CTA */
@media (max-width: 767px) {
  .benefits-cta {
    margin-top: 40px;
    padding: 32px 16px;
    margin-left: 16px;
    margin-right: 16px;
    width: calc(100% - 32px);
    border-radius: 12px;
  }
  
  .benefits-cta-content {
    max-width: 100%;
    width: 100%;
  }
  
  .benefits-feature-badges {
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .feature-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 16px;
    flex: none;
    min-width: auto;
  }
  
  .feature-badge svg {
    width: 16px;
    height: 16px;
  }
  
  .benefits-cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
  }
  
  .benefits-cta-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .benefits-cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
  }
  
  .benefits-btn {
    width: 100%;
    max-width: 260px;
    min-width: auto;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .benefits-success-metrics {
    gap: 8px;
    padding: 12px 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .success-item {
    flex: 1;
    min-width: 60px;
    text-align: center;
  }
  
  .success-number {
    font-size: 0.85rem;
  }
  
  .success-label {
    font-size: 0.6rem;
  }
  
  .metric-separator {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .benefits-cta {
    margin-top: 80px;
    padding: 50px 24px;
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }
  
  .benefits-cta-buttons {
    gap: 20px;
    flex-direction: row;
  }
  
  .benefits-btn {
    padding: 18px 32px;
    min-width: 180px;
    max-width: none;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .benefits-cta {
    margin-top: 100px;
    padding: 60px 40px;
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
}

/* Accessibility for Benefits Buttons */
@media (prefers-reduced-motion: reduce) {
  .benefits-btn {
    transition: none;
  }
  
  .benefits-btn:hover {
    transform: none;
  }
  
  .benefits-btn .btn-bg {
    transition: none;
  }
}

/* END BUSINESS BENEFITS SECTION */

/* START CTA SECTION */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #7C3AED 100%);
  padding: 100px 0;
  overflow: hidden;
  margin-top: 0;
}

/* Background Setup */
.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Gradient Overlay for depth */
.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.9) 0%,
    rgba(147, 51, 234, 0.8) 50%,
    rgba(124, 58, 237, 0.9) 100%
  );
  z-index: 2;
}

/* Circular Elements Container */
.cta-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Individual Circles */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: float-circles 15s ease-in-out infinite;
}

/* Circle Positioning and Sizes */
.circle-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: 0s;
}

.circle-2 {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 15%;
  background: rgba(255, 255, 255, 0.12);
  animation-delay: -2s;
}

.circle-3 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 5%;
  background: rgba(255, 255, 255, 0.1);
  animation-delay: -4s;
}

.circle-4 {
  width: 80px;
  height: 80px;
  top: 45%;
  right: 25%;
  background: rgba(255, 255, 255, 0.15);
  animation-delay: -6s;
}

.circle-5 {
  width: 50px;
  height: 50px;
  bottom: 15%;
  right: 35%;
  background: rgba(255, 255, 255, 0.2);
  animation-delay: -8s;
}

/* Circle Animation */
@keyframes float-circles {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-20px) translateX(10px) scale(1.05);
    opacity: 0.8;
  }
  66% {
    transform: translateY(10px) translateX(-5px) scale(0.95);
    opacity: 0.7;
  }
}

/* Content Container */
.cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.cta-content {
  max-width: 600px;
  width: 100%;
}

/* Typography */
.cta-title {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: white;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
  font-family: var(--body-text);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  max-width: 500px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
  min-width: 160px;
}

/* Primary Button (Start Your Project) */
.cta-button--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button--primary .cta-button-bg {
  background: linear-gradient(135deg, var(--primary-color), #9333EA);
}

.cta-button--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  color: white;
}

.cta-button--primary:hover .cta-button-bg {
  transform: scale(1);
}

/* Secondary Button (View Projects) */
.cta-button--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-button--secondary .cta-button-bg {
  background: rgba(255, 255, 255, 0.15);
}

.cta-button--secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  color: white;
}

.cta-button--secondary:hover .cta-button-bg {
  transform: scale(1);
}

/* Shared Button Elements */
.cta-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.cta-button-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.cta-button:active {
  transform: translateY(0px) scale(0.98);
}

/* Responsive Design */
@media (max-width: 767px) {
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-title {
    margin-bottom: 20px;
  }
  
  .cta-description {
    margin-bottom: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .cta-button {
    padding: 16px 24px;
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
  
  /* Adjust circles for mobile */
  .circle-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -50px;
  }
  
  .circle-2 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 10%;
  }
  
  .circle-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: -10px;
  }
  
  .circle-4, .circle-5 {
    display: none;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 120px 0;
  }
  
  .cta-content {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 140px 0;
  }
  
  .cta-inner {
    min-height: 400px;
  }
  
  .cta-content {
    max-width: 650px;
  }
}

@media (min-width: 1440px) {
  .cta-section {
    padding: 160px 0;
  }
  
  .cta-content {
    max-width: 700px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .cta-circle {
    animation: none;
  }
  
  .cta-button {
    transition: none;
  }
  
  .cta-button:hover {
    transform: none;
  }
}
/* END CTA SECTION */

/* START FOOTER SECTION */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: white;
  padding: 80px 0 40px;
  overflow: hidden;
}

/* Footer Background */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Wavy Background Elements */
.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave {
  position: absolute;
  width: 120%;
  height: 150px;
  background: linear-gradient(90deg, 
    rgba(124, 58, 237, 0.1) 0%,
    rgba(147, 51, 234, 0.08) 50%,
    rgba(124, 58, 237, 0.06) 100%);
  border-radius: 0 0 50% 50% / 0 0 100px 100px;
  animation: float-waves 20s ease-in-out infinite;
}

.wave-1 {
  top: -50px;
  right: -10%;
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, 
    rgba(124, 58, 237, 0.15) 0%,
    rgba(147, 51, 234, 0.1) 50%,
    rgba(124, 58, 237, 0.08) 100%);
  animation-delay: 0s;
  border-radius: 0 0 60% 40% / 0 0 120px 80px;
}

.wave-2 {
  top: 20%;
  left: -15%;
  width: 80%;
  height: 120px;
  background: linear-gradient(90deg, 
    rgba(147, 51, 234, 0.12) 0%,
    rgba(124, 58, 237, 0.08) 100%);
  animation-delay: -7s;
  border-radius: 0 0 40% 60% / 0 0 80px 100px;
}

.wave-3 {
  bottom: 10%;
  right: -5%;
  width: 70%;
  height: 100px;
  background: linear-gradient(90deg, 
    rgba(124, 58, 237, 0.08) 0%,
    rgba(147, 51, 234, 0.12) 100%);
  animation-delay: -14s;
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
}

@keyframes float-waves {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(1deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(10px) translateX(-5px) rotate(-0.5deg);
    opacity: 0.7;
  }
}

/* Footer Content Container */
.footer-inner {
  position: relative;
  z-index: 10;
}

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

/* Footer Brand */
.footer-brand {
  max-width: 400px;
}

.footer-logo a {
  font-family: var(--headings-text);
  font-weight: 700;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-color), #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  display: inline-block;
}

.footer-description {
  font-family: var(--body-text);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0 0 0;
  max-width: 350px;
}

/* Footer Navigation */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  margin: 0 0 16px 0;
  position: relative;
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  font-family: var(--body-text);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-nav-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-nav-list a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-nav-list a:hover::before {
  width: 100%;
}

/* Footer Social */
.footer-social {
  text-align: center;
}

.footer-social-title {
  font-family: var(--headings-text);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  margin: 0 0 20px 0;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal a {
  font-family: var(--body-text);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 767px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    gap: 32px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-nav-section {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Adjust waves for mobile */
  .wave-1 {
    width: 120%;
    height: 150px;
    right: -20%;
  }
  
  .wave-2 {
    width: 100%;
    height: 100px;
    left: -25%;
  }
  
  .wave-3 {
    width: 90%;
    height: 80px;
    right: -15%;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 100px 0 50px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-social {
    text-align: right;
  }
  
  .footer-social-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 120px 0 60px;
  }
  
  .footer-content {
    gap: 80px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1440px) {
  .footer {
    padding: 140px 0 70px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .wave,
  .footer-logo a {
    animation: none;
  }
  
  .social-link:hover,
  .footer-nav-list a:hover {
    transform: none;
  }
}
/* END FOOTER SECTION */
