/**
 * MANOLAW Website Styles
 * Built on the Manotan Design System
 */

/* ==========================================
   BASE & RESET
   ========================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--mano-font-sans);
  color: #FFFFFF;
  background: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav.scrolled .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link-cta {
  background: #FF6B35;
  color: #FFFFFF !important;
  margin-left: 8px;
}

.nav-link-cta:hover {
  background: #E5522C !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(47, 79, 79, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #1A1A1A 0%, #0A1010 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #FF6B35 0%, #E5522C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--mano-radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: #E5522C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: #FF6B35;
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.section-about {
  background: #2F4F4F;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-card:hover {
  border-color: #FF6B35;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.visual-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #FF6B35;
}

.visual-card:hover .visual-icon {
  background: #FF6B35;
  color: #FFFFFF;
}

.visual-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.visual-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ==========================================
   APPROACH SECTION
   ========================================== */

.section-approach {
  background: #1A1A1A;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  background: #2F4F4F;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pillar:hover {
  border-color: #FF6B35;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-number {
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar:hover .pillar-number {
  color: rgba(255, 107, 53, 0.3);
}

.pillar-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.pillar-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pillar-features svg {
  color: #FF6B35;
  flex-shrink: 0;
}

/* ==========================================
   CAPABILITIES SECTION
   ========================================== */

.section-capabilities {
  background: #1A1A1A;
}

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

.capability-card {
  background: #2F4F4F;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-card:hover {
  border-color: #FF6B35;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.capability-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #2F4F4F 0%, #1C3030 100%);
  padding: 48px;
}

.capability-card-featured:hover {
  border-color: #FF6B35;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.capability-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #FF6B35;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.capability-card:hover .capability-icon {
  background: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
}

.capability-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.capability-card-featured .capability-title {
  font-size: 28px;
}

.capability-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.capability-card-featured .capability-desc {
  font-size: 17px;
  line-height: 1.8;
}

.capability-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.capability-tag svg {
  color: #FF6B35;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.section-services {
  background: #0A1010;
}

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

.service-card {
  background: #2F4F4F;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  border-color: #FF6B35;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  background: #3A5A5A;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FF6B35;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-card:hover .service-icon {
  background: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.section-cta {
  background: #0A1010;
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, #2F4F4F 0%, #1C3030 100%);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-visual {
  position: relative;
  width: 200px;
  height: 200px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.cta-orb-1 {
  width: 200px;
  height: 200px;
  background: #FF6B35;
  opacity: 0.25;
  top: 0;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.cta-orb-2 {
  width: 150px;
  height: 150px;
  background: #759393;
  opacity: 0.3;
  bottom: -20px;
  right: -20px;
  animation: float 6s ease-in-out infinite reverse;
}

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

.cta-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.section-contact {
  background: #2F4F4F;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
}

.contact-value:hover {
  color: #FF6B35;
}

/* Contact Form */
.contact-form-wrapper {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.form-optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #FF6B35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

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

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #0A1010;
  color: #FFFFFF;
  padding: 80px 0 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FF6B35;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.footer-legal p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-company {
  font-size: 12px !important;
  margin-top: 4px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #FF6B35;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-pillars {
    grid-template-columns: 1fr;
  }

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

  .capability-card-featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px;
    text-align: center;
  }

  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-visual {
    display: none;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1A1A1A;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 24px;
    padding: 16px 32px;
    color: #FFFFFF;
  }

  .nav-link-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

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

/* ==========================================
   ANIMATIONS
   ========================================== */

@media (prefers-reduced-motion: no-preference) {
  .visual-card,
  .pillar,
  .capability-card,
  .service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .visual-card:nth-child(1) { animation-delay: 0.1s; }
  .visual-card:nth-child(2) { animation-delay: 0.2s; }
  .visual-card:nth-child(3) { animation-delay: 0.3s; }

  .pillar:nth-child(1) { animation-delay: 0.1s; }
  .pillar:nth-child(2) { animation-delay: 0.2s; }
  .pillar:nth-child(3) { animation-delay: 0.3s; }

  .capability-card:nth-child(1) { animation-delay: 0.1s; }
  .capability-card:nth-child(2) { animation-delay: 0.2s; }
  .capability-card:nth-child(3) { animation-delay: 0.3s; }
  .capability-card:nth-child(4) { animation-delay: 0.4s; }
  .capability-card:nth-child(5) { animation-delay: 0.5s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #22C55E;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature tags in services */
.service-highlight {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA button overrides to ensure visibility */
.cta-card .btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
  border: 2px solid #FF6B35;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.cta-card .btn-primary:hover {
  background: #E5522C;
  border-color: #E5522C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Form submit button */
.contact-form .btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
  font-size: 16px;
  padding: 16px 24px;
  margin-top: 8px;
}

.contact-form .btn-primary:hover {
  background: #E5522C;
}
