:root {
  --primary: #1761a0;
  --primary-light: #eaf3fa;
  --bg: #f7f8fa;
  --card-bg: #fff;
  --border: #e0e3e8;
  --text: #222;
  --muted: #6b7280;
  --footer-bg: #1a2230;
  --footer-text: #e5e7eb;
  --shadow: 0 2px 12px 0 rgba(23,97,160,0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* RESPONSIVE IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  box-sizing: border-box;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(23,97,160,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  width: 100%;
}

.navbar-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.navbar-links a.active,
.navbar-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-cta {
  margin-left: 1.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.navbar-cta:hover {
  background: #104a7a;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('images/douala.jpg') center/cover no-repeat;
  background-attachment: scroll;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,97,160,0.45) 0%, rgba(16,74,122,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.5rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #e5e7eb;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #d1d5db;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-primary {
  background: #fff;
  color: var(--primary);
}

.cta-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.hero-disclaimer {
  font-size: 0.875rem;
  color: #d1d5db;
  opacity: 0.9;
  margin-top: 1rem;
  animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* HOME PAGE FEATURES */
.home-features {
  padding: 5rem 1.5rem;
  background: #fff;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.features-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.features-header p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(23,97,160,0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(23,97,160,0.12);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d6ebf8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* HOME SECTORS */
.home-sectors {
  padding: 5rem 1.5rem;
  background: var(--bg);
}

.sectors-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.sectors-text {
  padding: 2rem 0;
}

.sectors-text h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin: 1rem 0 1.5rem 0;
  font-weight: 700;
  line-height: 1.2;
}

.sectors-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sectors-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-text-link:hover {
  gap: 0.75rem;
  color: #104a7a;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.sector-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(23,97,160,0.12);
  transform: translateY(-4px);
}

.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sector-card h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.sector-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* HOME CTA */
.home-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #104a7a 100%);
  color: #fff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.15rem;
  margin: 0 0 2.5rem 0;
  color: #e5e7eb;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cta-primary-large, .cta-secondary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cta-primary-large, .cta-secondary-large {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .cta-primary-large, .cta-secondary-large {
    white-space: normal !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .cta-primary-large, .cta-secondary-large {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

.cta-primary-large {
  background: #fff;
  color: var(--primary);
}

.cta-primary-large:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.cta-secondary-large {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-secondary-large:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-buttons button,
.hero-buttons a {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: var(--shadow);
}

.hero-buttons button.secondary,
.hero-buttons a.secondary {
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  border: 2px solid #fff;
}

.hero-buttons button.secondary:hover,
.hero-buttons a.secondary:hover {
  background: var(--primary-light);
}

.hero-buttons button:hover,
.hero-buttons a:hover {
  background: #104a7a;
  color: #fff;
}

.hero-disclaimer {
  font-size: 0.92rem;
  color: #e5e7eb;
  opacity: 0.85;
  margin-top: 1.2rem;
}

/* SECTIONS */
section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.2px;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #104a7a 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.15rem;
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
}

/* ABOUT */
.about-container {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.about-text p {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.about-leadership {
  margin-top: 1.2rem;
  font-size: 1.01rem;
  color: var(--muted);
}

.about-image {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.about-image img:hover {
  box-shadow: 0 4px 24px 0 rgba(23,97,160,0.13);
}

/* LICENSES */
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.license-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: all 0.3s ease;
}

.license-card:hover {
  box-shadow: 0 6px 24px rgba(23,97,160,0.15);
  transform: translateY(-4px);
}

.license-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #e5e7eb;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.license-card-content {
  padding: 1.2rem 1.2rem 1.1rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.license-card h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin: 0 0 0.7rem 0;
  font-weight: 600;
}

.license-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1.01rem;
  color: var(--text);
}

.license-card ul li {
  margin-bottom: 0.4rem;
}

.mini-note {
  margin-top: 1rem;
  padding: 0.8rem;
  background: var(--primary-light);
  border-radius: 6px;
  font-size: 0.9rem;
}

.mini-note strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.mini-note ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* PARTNERSHIPS */
#partnerships {
  position: relative;
  background: linear-gradient(135deg, rgba(23,97,160,0.75) 0%, rgba(16,74,122,0.7) 100%), url('images/partner.png') center/cover no-repeat;
  background-attachment: scroll;
  width: 100%;
}

#partnerships .partnerships-grid {
  position: relative;
  z-index: 2;
}

#partnerships .partnership-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

#process {
  background: var(--bg);
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.partnership-card {
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.partnership-card:hover {
  box-shadow: 0 6px 24px rgba(23,97,160,0.15);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.partnership-card h4 {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partnership-card p {
  color: var(--muted);
  font-size: 0.99rem;
  margin: 0;
}

/* COMPLIANCE */
.compliance-box {
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  background: #fafdff;
  padding: 1.7rem 1.2rem 1.2rem 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 1px 8px 0 rgba(23,97,160,0.04);
}

.compliance-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1.01rem;
}

/* CONTACT PAGE */
#contact {
  padding: 3rem 1.5rem 4rem 1.5rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* CONTACT FORM WRAPPER */
.contact-form-wrapper {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(23,97,160,0.08);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.contact-form-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.contact-form-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: #fff;
}

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

.submit-btn {
  padding: 1rem 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(23,97,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.submit-btn:hover {
  background: #104a7a;
  box-shadow: 0 6px 20px rgba(23,97,160,0.3);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* CONTACT SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,97,160,0.06);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

/* Location card with partner background */
.contact-info-card:last-child {
  position: relative;
  background: linear-gradient(135deg, rgba(23,97,160,0.88) 0%, rgba(16,74,122,0.85) 100%), url('images/partner.png') center/contain no-repeat;
  background-color: var(--primary);
  background-size: cover;
  color: #fff;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.contact-info-card:last-child h3,
.contact-info-card:last-child p {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.contact-info-card:last-child .contact-location {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-info-card:last-child .contact-info-icon {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #fff;
}

.contact-info-card:hover {
  box-shadow: 0 6px 24px rgba(23,97,160,0.12);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d6ebf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.contact-info-card p {
  color: var(--muted);
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #104a7a;
  text-decoration: underline;
}

.contact-location {
  font-weight: 600;
  color: var(--text) !important;
  margin-top: 0.5rem !important;
}

/* WHATSAPP CARD SPECIAL STYLING */
.whatsapp-card {
  background: linear-gradient(135deg, #e8f8f0 0%, #d4f4e6 100%);
  border: 2px solid #25d366;
}

.whatsapp-card .contact-info-icon {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: #fff;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.875rem 1.75rem;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transform: translateY(-2px);
}

/* BUTTONS */
.btn, .btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(23,97,160,0.15);
}

.btn:hover {
  background: #104a7a;
  box-shadow: 0 4px 12px rgba(23,97,160,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

#contact {
  text-align: center;
  padding: 4rem 1.5rem 3rem 1.5rem;
}

#contact h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

#contact > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.2rem 1rem 1rem 1rem;
  font-size: 0.98rem;
  letter-spacing: 0.1px;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,32,48,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px 0 rgba(23,97,160,0.18);
  background: #fff;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* RESPONSIVE */

/* Container max-width fix for all devices */
section,
.container,
.contact-container,
.licenses-grid,
.partnerships-grid,
.process-grid {
  max-width: 100%;
  box-sizing: border-box;
}

/* Tablets and small laptops (landscape) */
@media (max-width: 1024px) {
  section {
    padding: 3.5rem 2rem;
  }
  
  .hero-content {
    padding: 4rem 2rem 2rem 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (portrait) */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-image {
    justify-content: flex-start;
  }
  
  .sectors-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobile devices and small tablets */
@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }
  
  .hero {
    min-height: 30vh;
  }
  
  .hero-content {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .licenses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }

  .features-header h2 {
    font-size: 1.8rem;
  }

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

  .sectors-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sectors-text h2 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .cta-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cta-primary-large, .cta-secondary-large {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    padding: 1rem 1.5rem;
  }
  
  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-image img {
    max-width: 100%;
  }
  
  .license-card img {
    height: 200px;
  }
}

/* Mobile navigation breakpoint */
@media (max-width: 700px) {
  .navbar {
    padding: 0 1rem;
    height: 60px;
  }
  .navbar-logo {
    font-size: 1.1rem;
  }
  .navbar-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(23,97,160,0.1);
  }
  .navbar-links.open {
    display: flex;
  }
  .navbar-links a {
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .navbar-cta {
    margin: 1rem auto;
    width: 85%;
    align-self: center;
  }
  .navbar-toggle {
    display: block;
  }
}

/* Small mobile phones */
@media (max-width: 600px) {
  section {
    padding: 2.5rem 1rem;
  }
  
  .hero {
    min-height: 35vh;
  }
  
  .hero-content {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }

  .home-features {
    padding: 3rem 1rem;
  }

  .features-header {
    margin-bottom: 2rem;
  }

  .features-header h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .home-sectors {
    padding: 3rem 1rem;
  }

  .sectors-text h2 {
    font-size: 1.5rem;
  }

  .sectors-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .home-cta {
    padding: 3rem 1rem;
  }

  .cta-content {
    padding: 0 0.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.875rem;
  }
  
  .cta-primary-large, .cta-secondary-large {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .licenses-grid {
    gap: 1.2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

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

  .contact-info-card {
    padding: 1.5rem;
  }

  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .page-header h1 {
    font-size: 1.6rem;
  }
  .page-header {
    padding: 2rem 1rem;
  }
  
  .license-card {
    min-height: auto;
  }
  
  .license-card img {
    height: 180px;
  }
  
  .navbar {
    padding: 0 0.75rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .features-header h2,
  .sectors-text h2,
  .cta-content h2 {
    font-size: 1.4rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .cta-primary-large, .cta-secondary-large {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
  
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .license-card img {
    height: 160px;
  }
  
  .contact-form-wrapper,
  .contact-info-card {
    padding: 1.25rem;
  }
  
  .navbar-logo {
    font-size: 1rem;
  }
  
  .page-header h1 {
    font-size: 1.4rem;
  }
}

/* Very small phones (320px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.35rem;
  }
  
  .feature-card-icon {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .navbar {
    padding: 0 0.5rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }
  
  .lightbox img {
    max-width: 95vw;
    max-height: 85vh;
  }
  
  footer {
    font-size: 0.85rem;
    padding: 1rem 0.75rem;
  }
}
