/* ABC - Professional Consulting Firm Styles */

:root {
  --primary-color: #1a365d;
  --secondary-color: #2563eb;
  --accent-color: #f59e0b;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --text-color: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
}

/* Buttons */
.btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.02em;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark-color);
}

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

.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--white);
}

.btn-outline-alizeti {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-alizeti:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Navigation */
.navbar {
  padding: 0.75rem 0;
  transition: var(--transition);
  background: transparent;
   /* background: rgba(255, 255, 255, 0.98);*/
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: var(--dark-color) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-abc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 10px;
  color: var(--dark-color) !important;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.05em;
}

.navbar.scrolled .logo-abc {
  background: var(--gradient-accent);
  color: var(--dark-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--white) !important; 
  /*color: var(--dark-color) !important; */
  margin: 0 0.75rem;
  position: relative;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section with Background Image */
.hero-section {
  min-height: 100vh;
  padding-top: 80px; /* Account for fixed navbar */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(26,54,93,0.98) 0%, rgba(26,54,93,0.9) 45%, rgba(37,99,235,0.4) 55%, transparent 65%),
              url('../images/herobackground.jpg') center right/cover no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.95) 0%, rgba(26,54,93,0.8) 40%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: var(--light-color);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  color: var(--white);
  font-size: 1.75rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  font-weight: 700;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Featured Insights Section */
.insights-section {
  padding: 6rem 0;
  background: var(--white);
}

.insight-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #e8e8e8;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.insight-image {
  height: 220px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-content {
  padding: 1.5rem;
}

.insight-category {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--light-color);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.insight-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  line-height: 1.4;
  font-weight: 700;
}

.insight-excerpt {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.insight-meta i {
  margin-right: 0.35rem;
  color: var(--accent-color);
}

/* Interactive World Map - Transparent with Africa Emphasis */
.world-map-section {
  padding: 5rem 0;
  background: var(--white);
}

.world-map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 950 / 620;
  background-color: var(--white);
}

.world-map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.15;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.map-marker-html {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-marker-html.africa {
  z-index: 20;
}

.map-marker-html .dot {
  width: 10px;
  height: 10px;
  background-color: #999;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.map-marker-html.africa .dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border: 3px solid white;
}

.map-marker-html.africa .pulse-ring {
  position: absolute;
  top: 8px; /* half of 16px dot */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 102, 255, 0.4);
  animation: pulse-ring 2s infinite;
  z-index: -1;
  pointer-events: none;
}

.map-marker-html .label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #6c757d;
  background: rgba(255,255,255,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.3s ease;
}

.map-marker-html.africa .label {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,0.9);
}

.map-marker-html:hover {
  z-index: 30;
}

.map-marker-html:hover .dot {
  transform: scale(1.3);
}

.map-marker-html:hover .label {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.map-tooltip {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  min-width: 180px;
  border: 1px solid #e8e8e8;
}

.map-tooltip.show {
  opacity: 1;
}

.map-tooltip h5 {
  margin-bottom: 0.25rem;
  color: var(--dark-color);
  font-size: 1rem;
}

.map-tooltip p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.region-info-panel {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e8e8e8;
}

.region-info-panel h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--dark-color);
}

.region-info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-info-panel li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.region-info-panel li i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--white);
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 2rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6rem 0 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: none;
  border-radius: 8px;
  color: var(--dark-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.newsletter-btn:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 3rem 0 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--gradient-primary);
  position: relative;
}

.page-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-breadcrumb {
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--accent-color);
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.mission-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid #e8e8e8;
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mission-icon i {
  color: var(--white);
  font-size: 1.75rem;
}

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

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid #e8e8e8;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.team-role {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

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

.contact-info-card {
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.office-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.office-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid #e8e8e8;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.office-flag {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.office-flag i {
  color: var(--white);
  font-size: 1.25rem;
}

.office-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.office-address {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

/* Insights Page */
.insights-hero {
  padding: 6rem 0;
  background: var(--light-color);
}

.insights-grid {
  padding: 4rem 0;
  background: var(--white);
}

.insight-featured {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e8e8e8;
}

.insight-featured .insight-image {
  height: 400px;
}

.insight-featured .insight-content {
  padding: 2.5rem;
}

.insight-featured .insight-title {
  font-size: 1.75rem;
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-section {
    background: linear-gradient(105deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 60%, rgba(0,0,0,0.7) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  .navbar-collapse .nav-link {
    color: var(--dark-color) !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.section-padding {
  padding: 6rem 0;
}
.insight-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.insight-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}
