/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand-red: #c36068;
  --brand-blue: #121827;
  --light-blue: #f0f4f8;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--brand-blue);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

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

/* Container - Fixed padding */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

/* Utilities */
.text-center { text-align: center; }
.text-red { color: var(--brand-red); }
.text-gray { color: var(--gray-400); }
.italic { font-style: italic; }
.hidden { display: none; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--white);
  transition: background 0.2s;
  cursor: pointer;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  opacity: 0.9;
}

.btn-dark-full {
  display: block;
  width: 100%;
  background: var(--brand-blue);
  color: var(--white);
  padding: 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-dark-full:hover {
  opacity: 0.9;
}

/* Header */
.header {
  background: var(--brand-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 200px;
  height: 25px;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--brand-blue);
}

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

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Hero */
.hero {
  background: var(--brand-blue);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background: rgba(195, 96, 104, 0.2);
  color: var(--brand-red);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero { padding: 6rem 0; }
  .hero-inner {
    flex-direction: row;
    gap: 4rem;
  }
  .hero-title { font-size: 3.25rem; }
  .hero-content { flex: 1; }
  .hero-image { flex: 1; }
}

/* Premium Section */
.premium-section {
  background: var(--light-blue);
  padding: 5rem 0;
}

.premium-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.section-description {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(195, 96, 104, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
}

.feature-description {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .premium-section { padding: 7rem 0; }
  .section-title { font-size: 2.5rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Ecosystem Section - WHITE background with cards */
.ecosystem-section {
  background: var(--white);
  padding: 5rem 0;
}

.ecosystem-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-label {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.section-title-dark {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1.15;
}

.ecosystem-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.ecosystem-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Ecosystem Cards with Shadow */
.ecosystem-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  gap: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ecosystem-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ecosystem-item.active {
  border-color: var(--brand-red);
  background-color: var(--brand-blue);
  box-shadow: 0 8px 30px rgba(195, 96, 104, 0.15);
}

.ecosystem-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-400);
}

.ecosystem-item.active .ecosystem-number {
  color: var(--brand-red);
}

.ecosystem-item-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.ecosystem-item.active .ecosystem-item-title {
  color: var(--white);
}

.ecosystem-item-header {
  /* display: flex; */
  align-items: center;
  gap: 21rem;
  margin-bottom: 0.5rem;
}

.ecosystem-line {
  width: 66px;
  height: 2px;
  background: var(--brand-red);
  align-items: right;
}

.ecosystem-item-description {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Ecosystem Image - Card style with black border */
.ecosystem-image {
  background: var(--brand-blue);
  padding: 0.5rem;
  border-radius: 12px;
  border: 3px solid var(--brand-blue);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ecosystem-image img {
  border-radius: 8px;
  width: 100%;
}

.ecosystem-header-description {
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .ecosystem-section { padding: 7rem 0; }
  .ecosystem-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .ecosystem-header-right { max-width: 320px; }
  .section-title-dark { font-size: 2.75rem; }
  .ecosystem-content {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .ecosystem-items { flex: 1; }
  .ecosystem-image { flex: 1; }
}

/* Excellence Section - DEEP BLUE background */
.excellence-section {
  background: var(--brand-blue);
  padding: 5rem 0;
}

.excellence-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.excellence-description {
  color: var(--gray-400);
  font-family: var(--font-body);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pillar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

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

.pillar-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
  color: var(--brand-red)
}

.pillar-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
}

.btn-light {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-light:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .excellence-section { padding: 7rem 0; }
  .excellence-title { font-size: 2.5rem; }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  max-width: 400px;
}

.contact-description {
  color: var(--gray-500);
  font-family: var(--font-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-blue);
  font-family: var(--font-body);
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--brand-red);
}

.email-icon {
  width: 40px;
  height: 40px;
  background: rgba(195, 96, 104, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 540px;
  background-color: rgb(244 247 248);
  padding: 20px;
  border-radius: 15px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(195, 96, 104, 0.1);
}

.form-textarea {
  resize: none;
}

@media (min-width: 768px) {
  .contact-section { padding: 7rem 0; }
  .contact-inner {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Footer - RED background */
.footer {
  background: #c36068;
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer .logo-icon {
  background: var(--white);
  color: var(--brand-red);
}

.footer .logo-text {
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.office-label {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.office-address {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal,
.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.white-icon {
  color: var(--brand-red);
}

.portfolio-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.brand-red{
  color: var(--brand-red);
}

.logo-footer{
  width: 160px !important;
  height: 25px !important;
}

@media (max-width: 767px) {
  .hero-container {
    grid-template-columns: 0 1fr !important;
    text-align: center !important;
  }
  .hero-content {
      text-align: center;
  }
  .hero-content p {
      margin-left: auto;
      margin-right: auto;
  }
  .hero-visual {
      order: 2; 
  }
  .hero-overlay{
    left: 11rem;
  }
  .mobile-menu-btn-enterprise {
    display: flex !important;
}
.nav-links-enterprise{
  display: none !important;
}
}