:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #ff4d2d;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --transition: 0.2s ease;
  --font-main: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 72px; /* Add space for fixed header */
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.06);
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 72px;
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 72px;
}

.logo-wrapper img {
  height: 56px;
  width: auto;
  min-width: 120px;
  display: block;
  object-fit: contain;
  max-width: 200px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: block;
}

.nav-link:hover {
  color: #ff4d2d;
  background: rgba(255, 77, 45, 0.04);
}

.client-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  text-decoration: none;
}

.client-portal-btn:hover {
  background: #ff4d2d;
  color: #fff;
  border-color: #ff4d2d;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(255, 77, 45, 0.2);
}

.client-portal-btn svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1e293b;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  z-index: 10000;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }
  
  .site-header, .navbar, .navbar-container {
    height: 64px;
    min-height: 64px;
  }
  
  .navbar-container {
    padding: 0 1rem;
  }
  
  .logo-wrapper img {
    height: 48px;
    min-width: 100px;
    max-width: 180px;
  }
  
  .navbar-logo, .logo-wrapper {
    height: 64px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .navbar-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    display: flex;
    opacity: 0;
    visibility: hidden;
  }
  
  .navbar-links.mobile-menu-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link, .client-portal-btn {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0;
    box-shadow: none;
  }
  
  .client-portal-btn {
    background: transparent;
    border: none;
    color: #1e293b;
    margin: 0;
  }
  
  .client-portal-btn:hover {
    background: rgba(255, 77, 45, 0.04);
    color: #ff4d2d;
    border: none;
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 0.75rem;
  }
  
  .logo-wrapper img {
    height: 44px;
    min-width: 90px;
    max-width: 160px;
  }
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-img {
  max-width: 180px;
  height: auto;
  width: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tagline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(255, 77, 45, 0.2);
}

.btn-secondary {
  background: var(--card-bg);
  color: #475569;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Main Content */
main {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(255, 77, 45, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #475569;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.service-card:hover .service-icon {
  background: rgba(255, 77, 45, 0.1);
  color: var(--accent);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}

/* Service Button Styles */
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.service-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 77, 45, 0.15);
}

.service-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-btn span {
  white-space: nowrap;
}

/* Contact Options */
.interest-section {
  background: white;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 4rem 0;
  box-shadow: var(--shadow);
}

.contact-section {
  background: var(--bg);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 4rem 0;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-option {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}

.contact-option-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-option-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.press-2-note {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}

.contact-option-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.contact-option-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.contact-option-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1001;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #d63a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .tagline {
    font-size: 2rem;
  }
  
  main {
    padding: 2rem 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
} 