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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: #5E5EEE;
  color: #fff;
  border: 2px solid #5E5EEE;
}
.btn-primary:hover { background: #2AC28E; border-color: #2AC28E; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-secondary {
  background: #2AC28E;
  color: #fff;
  border: 2px solid #2AC28E;
}
.btn-secondary:hover { background: #5E5EEE; border-color: #5E5EEE; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }
.logo-text { font-size: 17px; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.logo-text span { display: block; font-size: 11px; font-weight: 500; color: #5E5EEE; letter-spacing: 0.5px; text-transform: uppercase; }

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: #1a1a2e;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #5E5EEE;
  transition: width 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: #5E5EEE; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  transition: all 0.3s;
}
.nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 50%, #0d1b3e 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94,94,238,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 680px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: #5E5EEE;
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

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

/* ===== Section Utilities ===== */
.section-pad { padding: 80px 0; }

.section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5E5EEE;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

/* ===== Partners ===== */
.partners { background: #f9f9fd; }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  margin-top: 32px;
}

.partners-grid img {
  max-height: 60px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: grayscale(40%);
}
.partners-grid img:hover { opacity: 1; filter: none; }

/* ===== About Section ===== */
.about-section { background: #fff; }

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

.about-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 15px;
}

.value-list .fa-circle { font-size: 8px; color: #5E5EEE; }

.about-img img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

/* ===== Services CTA ===== */
.services-cta { background: #f4f4fc; }

.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.services-cta-grid > div:first-child h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-cta-grid > div:first-child p {
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(94,94,238,0.15);
  transform: translateY(-4px);
}

.service-card i,
.svc-icon {
  font-size: 28px;
  color: #5E5EEE;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: #5E5EEE;
  transition: color 0.2s;
}
.service-card a:hover { color: #2AC28E; }

/* ===== Reviews ===== */
.reviews-section { background: #fff; }

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

.review-card {
  background: #f9f9fd;
  border-radius: 16px;
  padding: 32px;
  border-top: 4px solid #5E5EEE;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(94,94,238,0.12); }

.stars {
  color: #f59e0b;
  font-size: 20px;
  margin-bottom: 16px;
}

.review-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer strong {
  display: block;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 15px;
}

.reviewer span {
  font-size: 13px;
  color: #888;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a0a2e;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { margin-bottom: 16px; }

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

.footer-desc { margin-top: 8px; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: #2AC28E; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: #5E5EEE; color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #2AC28E; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 100%);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #2AC28E; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== Contact Page ===== */
.contact-section { padding: 80px 0; }

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

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #5E5EEE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
  color: #555;
  font-size: 15px;
}
.contact-item-text a:hover { color: #5E5EEE; }

.contact-form-wrap {
  background: #f9f9fd;
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: #666;
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0ef;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #5E5EEE; }

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

/* ===== Consultancy Page ===== */
.consultancy-intro { padding: 80px 0; }

.consultancy-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consultancy-intro-grid img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.consultancy-intro-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.consultancy-intro-text p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.skills-section { background: #f4f4fc; padding: 80px 0; }
.why-choose { padding: 80px 0; }
.cta-banner { background: linear-gradient(135deg, #5E5EEE, #2AC28E); padding: 70px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 16px; }
.cta-banner .btn-outline { border-color: #fff; color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: #5E5EEE; }

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.skill-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.skill-card i { font-size: 32px; color: #5E5EEE; margin-bottom: 14px; }
.skill-card h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.skill-card p { font-size: 14px; color: #666; line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 16px; }
.why-icon { width: 52px; height: 52px; background: #f0f0fc; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #5E5EEE; font-size: 20px; flex-shrink: 0; }
.why-item h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== About Page ===== */
.about-main { padding: 80px 0; }
.team-section { background: #f4f4fc; padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.team-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.team-card-body span { font-size: 14px; color: #5E5EEE; font-weight: 600; }

/* ===== Testimonial Page ===== */
.testimonials-section { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi-card { background: #f9f9fd; border-radius: 16px; padding: 36px; border-left: 4px solid #5E5EEE; }
.testi-author { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; color: #1a1a2e; font-weight: 700; }
.testi-author span { font-size: 13px; color: #888; }
.testi-quote { font-size: 15px; color: #444; line-height: 1.75; font-style: italic; }

/* ===== Map Section ===== */
.map-section { background: #f4f4fc; padding: 80px 0; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .services-cta-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .consultancy-intro-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-toggle:checked ~ .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 0; font-size: 16px; }
  .header-inner { position: relative; }

  .stats-grid { gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .value-list { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
