/* ================================================
   NETLIFY THEME - Geographic Expert
   Professional blue/gray corporate styling
================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Theme Variables */
:root {
  /* Colors - Professional Corporate Blue */
  --primary-color: #0056b3;
  --secondary-color: #6c757d;
  --accent-color: #17a2b8;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f4f6f9;
  --bg-white: #ffffff;
  --border-color: #e3e6ea;
  
  /* Typography - Professional & Geographic */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Layout - Corporate Centered */
  --border-radius: 4px;
  --box-shadow: 0 2px 15px rgba(0, 86, 179, 0.1);
  --transition: all 0.3s ease;
}

/* Geographic Expert Personality Enhancements */
.hero {
  background: linear-gradient(135deg, #f4f6f9 0%, #ffffff 50%, #e3f2fd 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Professional Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-color);
}

.logo h1.sitename {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -1px;
}

/* Navigation - Corporate Professional */
.navmenu a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Hero Content - Geographic Authority */
.hero-content h1 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 86, 179, 0.1);
}

.hero-content h2 {
  color: var(--accent-color);
  font-weight: 500;
  font-style: italic;
}

.hero-content .lead {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
}

/* CTA Section - Professional Trust */
.hero-cta {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
}

.hero-cta h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Buttons - Corporate Professional */
.btn-primary {
  background: linear-gradient(145deg, var(--primary-color) 0%, #004494 100%);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 35px;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(145deg, var(--accent-color) 0%, #138496 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services - Corporate Grid */
.services {
  background: var(--bg-light);
}

.service-item {
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-top-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
}

.service-item i {
  color: var(--primary-color);
  background: rgba(0, 86, 179, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

/* Section Titles - Geographic Professional */
.section-title h2 {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

/* Content Areas - Professional Layout */
.main-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--primary-color);
}

.sidebar {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
}

/* Contact Section - Professional Trust */
.contact-info .info-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 86, 179, 0.08);
  border-left: 3px solid var(--primary-color);
}

.contact-info .info-item i {
  background: rgba(0, 86, 179, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Footer - Corporate Professional */
.footer {
  background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
  border-top: 4px solid var(--primary-color);
}

.footer h3,
.footer h4 {
  color: #ffffff;
  font-weight: 600;
}

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

/* Geographic Expert Accent Elements */
.geographic-marker {
  position: relative;
}

.geographic-marker::before {
  content: "📍";
  margin-right: 5px;
}

/* Professional Trust Indicators */
.trust-indicator {
  background: rgba(0, 86, 179, 0.05);
  border: 1px solid rgba(0, 86, 179, 0.2);
  border-radius: var(--border-radius);
  padding: 15px;
  margin: 20px 0;
}

.trust-indicator i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .main-content {
    padding: 25px;
  }
  
  .hero-cta {
    margin-top: 40px;
  }
}