/* ManagementOK Static Site - CSS */
/* Theme: greenNature (teal primary, light green secondary) */

:root {
  --primary: #009688;
  --primary-light: #e0f2f1;
  --primary-dark: #00695c;
  --secondary: #558b2f;
  --secondary-light: #f1f8e9;
  --secondary-dark: #33691e;
  --text-primary: #303030;
  --text-secondary: #616161;
  --bg-paper: #ffffff;
  --bg-default: #fafafa;
  --divider: #e0e0e0;
  --font-main: 'Roboto Condensed', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', 'Roboto', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-default);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); line-height: 1.3; }

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

/* Grid */
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { padding: 0 12px; flex: 1; }
.col-2 { width: 16.66%; padding: 0 12px; }
.col-3 { width: 25%; padding: 0 12px; }
.col-4 { width: 33.33%; padding: 0 12px; }
.col-5 { width: 41.66%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-7 { width: 58.33%; padding: 0 12px; }
.col-8 { width: 66.66%; padding: 0 12px; }
.col-9 { width: 75%; padding: 0 12px; }
.col-12 { width: 100%; padding: 0 12px; }

/* Utility */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: #fff; }
.bg-primary { background-color: var(--primary); }
.bg-white { background-color: #fff; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; } .py-5 { padding-top: 48px; padding-bottom: 48px; } .py-6 { padding-top: 64px; padding-bottom: 64px; }
.px-2 { padding-left: 16px; padding-right: 16px; } .px-3 { padding-left: 24px; padding-right: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.hidden-mobile { display: block; }
.hidden-desktop { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-text { background: none; border: none; color: var(--text-primary); padding: 8px 16px; }
.btn-text:hover { color: var(--primary); }
.btn-icon {
  width: 44px; height: 44px; padding: 0;
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.05); border: none; cursor: pointer;
  transition: background 0.3s;
}
.btn-icon:hover { background: rgba(0,0,0,0.1); }

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-elevated { box-shadow: var(--shadow-lg); }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 12px 0;
}
.header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 8px 0;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img { height: 42px; transition: height 0.3s; }
.header.scrolled .logo img { height: 36px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.soon-badge {
  background: rgba(255,165,0,0.4);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  position: absolute;
  top: -2px; right: -8px;
  transform: rotate(15deg);
  pointer-events: none;
}
.coming-soon:hover .soon-badge { background: rgba(255,165,0,1); }

/* Mobile menu */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px auto;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: #fff;
  font-size: 20px;
  font-family: var(--font-main);
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--secondary); }

/* ===================== BANNER / HERO ===================== */
.banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #26a69a 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.banner-content { position: relative; z-index: 2; }
.banner h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 8px;
}
.banner h1 strong {
  font-weight: 700;
  display: block;
}
.banner .subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.banner .btn-area { display: flex; gap: 16px; flex-wrap: wrap; }
.banner .illustration {
  position: relative;
  z-index: 2;
}
.banner .illustration img {
  max-width: 100%;
  border-radius: var(--radius-lg);
}

/* Wave decoration */
.wave-section {
  position: relative;
  margin-top: -2px;
}
.wave-svg {
  display: block;
  width: 100%;
}

/* ===================== COUNTER ===================== */
.counter-section { padding: 48px 0; }
.counter-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.counter-item { text-align: center; }
.counter-item .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-main);
}
.counter-item .label {
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.counter-item .label .material-icons { font-size: 20px; color: var(--primary); }

/* ===================== FEATURES ===================== */
.feature-section { padding: 80px 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 100px;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-item.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.feature-text h3 strong { font-weight: 700; display: block; color: var(--primary-dark); }
.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 16px 0 24px;
}
.feature-image { flex: 1; position: relative; }
.feature-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ===================== TESTIMONIALS ===================== */
.testi-section {
  padding: 80px 0;
  position: relative;
}
.testi-section .bg-shape {
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  max-width: 600px;
  z-index: 0;
  opacity: 0.15;
}
.testi-content { position: relative; z-index: 1; }
.testi-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
}
.testi-title strong { font-weight: 700; display: block; color: var(--primary); }
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: opacity 0.5s;
}
.testi-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testi-profile .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-profile .name { font-weight: 600; font-size: 16px; }
.testi-profile .title { font-size: 13px; color: var(--text-secondary); display: block; }
.testi-card p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.testi-logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.testi-logos img {
  height: 40px;
  opacity: 0.4;
  transition: opacity 0.3s;
  cursor: pointer;
}
.testi-logos img:hover, .testi-logos img.active { opacity: 1; }

/* ===================== PRICING ===================== */
.pricing-section { padding: 80px 0; }
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===================== FAQ ===================== */
.faq-section { padding: 80px 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--primary-light); }
.faq-question .arrow {
  transition: transform 0.3s;
  font-size: 20px;
  color: var(--text-secondary);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.faq-illustration img {
  max-width: 100%;
  border-radius: var(--radius-md);
}

/* ===================== FOOTER ===================== */
.footer-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.footer {
  background: #263238;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; }
.footer-links { flex: 2; display: flex; gap: 48px; min-width: 200px; }
.footer-links-col h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links-col li { margin-bottom: 8px; }
.footer-links-col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-links-col a:hover { color: #fff; }
.footer-social { flex: 1; min-width: 150px; }
.footer-social .socmed { display: flex; gap: 8px; margin-bottom: 16px; }
.footer-social .socmed a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s;
}
.footer-social .socmed a:hover { background: var(--primary); }
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

/* ===================== CONTACT PAGE ===================== */
.contact-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
}
.contact-form-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h2 { color: #fff; text-align: center; margin-bottom: 8px; }
.contact-form-card .desc { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 32px; font-size: 15px; }
.form-row { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; }
.form-group label { display: block; color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 4px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.form-actions label { color: rgba(255,255,255,0.8); font-size: 13px; }
.form-actions a { color: var(--secondary-light); }

/* ===================== SERVICES PAGE ===================== */
.services-hero {
  background: linear-gradient(135deg, #1a237e 0%, var(--primary-dark) 50%, var(--primary) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.services-hero h1 { font-size: 44px; font-weight: 300; margin-bottom: 16px; }
.services-hero p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.7; }

.services-about { padding: 80px 0; }
.about-counter { display: flex; gap: 32px; margin: 32px 0; }
.about-counter .stat { text-align: center; }
.about-counter .stat .num { font-size: 32px; font-weight: 700; color: var(--primary); }
.about-counter .stat .lbl { font-size: 13px; color: var(--text-secondary); }

.services-grid-section { padding: 80px 0; background: var(--bg-default); }
.services-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.services-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.services-card img { width: 100%; height: 200px; object-fit: cover; }
.services-card .content { padding: 24px; }
.services-card h4 { font-size: 18px; margin-bottom: 12px; color: var(--text-primary); }
.services-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.expertise-section { padding: 80px 0; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.expertise-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.case-studies { padding: 80px 0; background: var(--bg-default); }
.case-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.case-cat-btn {
  padding: 8px 20px;
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  color: var(--text-secondary);
}
.case-cat-btn:hover, .case-cat-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #eee;
  cursor: pointer;
}
.case-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 16px;
  color: #fff;
}
.case-card .overlay h5 { font-size: 14px; font-weight: 600; }
.case-card .overlay p { font-size: 12px; opacity: 0.8; }
.case-card-small { height: 180px; }
.case-card-medium { height: 240px; }
.case-card-big { height: 320px; }

.cta-section {
  padding: 48px 0;
}
.cta-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-card h3 { font-size: 28px; }
.cta-card p { color: var(--text-secondary); margin-top: 4px; }

.map-section { padding: 80px 0; }
.office-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}
.office-card h4 { font-size: 18px; margin-bottom: 16px; }
.office-info { display: flex; flex-direction: column; gap: 12px; }
.office-info .info-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.office-info .material-icons { font-size: 20px; color: var(--primary); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; height: 400px; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===================== ABOUT PAGE ===================== */
.about-page {
  padding: 120px 0 80px;
}
.about-page h1 { font-size: 36px; margin-bottom: 16px; }
.about-page h2 { font-size: 24px; margin-top: 32px; margin-bottom: 12px; color: var(--primary-dark); }
.about-page h3 { font-size: 18px; margin-top: 20px; margin-bottom: 8px; color: var(--primary); }
.about-page p { margin-bottom: 12px; line-height: 1.8; color: var(--text-secondary); }

/* ===================== LEGAL PAGES ===================== */
.legal-page {
  padding: 120px 0 80px;
}
.legal-page h1 { font-size: 32px; margin-bottom: 24px; }
.legal-page h2 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; color: var(--primary-dark); }
.legal-page p { margin-bottom: 12px; line-height: 1.8; color: var(--text-secondary); }
.legal-page ul { margin: 12px 0 12px 24px; list-style: disc; }
.legal-page li { margin-bottom: 8px; line-height: 1.7; color: var(--text-secondary); }

/* ===================== LINKS PAGE ===================== */
.links-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #6dd5ed, #2193b0);
}
.links-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}
.links-container .logo-pic { width: 200px; margin-bottom: 16px; }
.links-container h1 { color: #fff; margin-bottom: 32px; }
.social-links { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.social-link {
  background: #fff;
  color: #2193b0;
  padding: 12px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.social-link:hover { background: #2193b0; color: #fff; }
.social-link .material-icons { font-size: 24px; }

/* ===================== BACK TO HOME ===================== */
.back-home {
  position: fixed;
  top: 100px; left: 24px;
  z-index: 100;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.back-home:hover { background: rgba(255,255,255,0.3); color: #fff; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 { width: 100%; }
  .row { flex-direction: column; }
  .feature-item, .feature-item.reverse { flex-direction: column; }
  .banner h1 { font-size: 36px; }
  .banner { min-height: auto; padding: 100px 0 60px; }
  .hidden-mobile { display: none; }
  .hidden-desktop { display: block; }
  .hamburger { display: block; }
  .nav-menu { display: none; }
  .header .nav-menu.mobile-show { display: flex; }
  .footer-grid { flex-direction: column; }
  .footer-links { gap: 24px; }
  .case-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .about-counter { flex-direction: column; gap: 16px; }
  .counter-grid { flex-direction: column; gap: 24px; }
  .services-hero h1 { font-size: 32px; }
  .testi-logos { display: none; }
  .contact-form-card { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .links-container .logo-pic { display: none; }
  .social-link { width: 90%; }
  .form-row { flex-direction: column; }
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-secondary);
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Section title with decoration */
.title-deco {
  position: relative;
  display: inline-block;
}
.title-deco h2 {
  font-size: 32px;
  color: var(--text-primary);
  position: relative;
}
.title-deco::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 12px;
  border-radius: 2px;
}

/* Testimonial carousel */
.testi-carousel {
  position: relative;
  overflow: hidden;
}
.testi-slide {
  display: none;
}
.testi-slide.active {
  display: block;
}
