/* TeamLogic IT West Austin - Landing Page Styles */
:root {
  --primary: #066aab;
  --primary-dark: #055a91;
  --accent: #4bbb4f;
  --accent-dark: #3da641;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #1a2332;
  --border: #e2e8f0;
  --success: #4bbb4f;
  --orange: #FFA800;
  --max-width: 1100px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.logo span { color: var(--accent); }

nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

nav a:hover { color: var(--primary); text-decoration: none; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-light);
}

.section-alt .section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.testimonial {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Lead Capture Form */
.lead-form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.lead-form-section h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.lead-form-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lead-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
}

.lead-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.lead-form button:hover {
  background: #e69700;
}

.form-success {
  display: none;
  background: var(--success);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Blog / Article */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-meta {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-cta {
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.article-cta h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner a:hover {
  color: #fff;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  margin: 0 1rem;
}

.footer-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 3rem 1.5rem; }
  nav { display: none; } /* Hamburger menu can be added later */
  .services-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.5rem; }
  .article-content h1 { font-size: 1.6rem; }
}
