/* constitutionivo modern style */
:root {
  --main-bg: #f7f8fa;
  --main-text: #23213a;
  --accent: #6C38A6;
  --accent2: #1BC6B4;
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(108,56,166,0.08);
  --border-radius: 18px;
  --footer-bg: #23213a;
  --footer-text: #fff;
  --nav-bg: #fff;
  --nav-link: #6C38A6;
  --nav-link-active: #1BC6B4;
  --btn-bg: linear-gradient(90deg, #6C38A6 60%, #1BC6B4 100%);
  --btn-text: #fff;
  --input-bg: #f2f2f7;
  --input-border: #e0e0e0;
}

body {
  background: var(--main-bg);
  color: var(--main-text);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -1px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVIGATION */
.navbar {
  background: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(108,56,166,0.04);
  padding: 0.7rem 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}
.navbar-nav {
  display: flex;
  gap: 1.5rem;
}
.nav-link {
  color: var(--nav-link);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-link.active, .nav-link:focus, .nav-link:hover {
  color: var(--nav-link-active);
}
.navbar-toggler {
  border: none;
  background: transparent;
}

/* HERO */
.hero {
  background: linear-gradient(90deg, #6C38A6 60%, #1BC6B4 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(108,56,166,0.10);
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-img {
  width: 100%;
  max-width: 400px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* CARDS & BLOCKS */
.card, .feature-card, .service-card, .team-card, .value-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 2.2rem 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .feature-card:hover, .service-card:hover, .team-card:hover, .value-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(27,198,180,0.13);
}

/* BUTTONS */
.btn, .btn-primary, .btn-lg {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  border: none;
  border-radius: 32px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(27,198,180,0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn:hover, .btn-primary:hover {
  background: linear-gradient(90deg, #1BC6B4 60%, #6C38A6 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(108,56,166,0.13);
}

/* FORMS */
input, textarea, select {
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  color: var(--main-text);
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent2);
  outline: none;
}

/* TEAM */
.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent2);
  margin-bottom: 12px;
}

/* FOOTER */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 0 1.2rem 0;
  border-radius: 32px 32px 0 0;
  margin-top: 3rem;
}
.footer-links a {
  color: var(--footer-text);
  margin: 0 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent2);
}

/* SECTION HEADINGS */
.section-title {
  font-size: 2.3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .navbar-nav { gap: 0.7rem; }
  .hero { padding: 50px 0 30px 0; }
}
@media (max-width: 600px) {
  .hero { padding: 30px 0 20px 0; border-radius: 0 0 18px 18px; }
  .footer { border-radius: 18px 18px 0 0; }
  .section-title { font-size: 1.5rem; }
} 