/* Modern IT Services Stylesheet */
:root {
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --radius: 8px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo:hover {
  color: var(--primary);
}

.logo .fas {
  color: var(--accent);
  font-size: 1.5rem;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

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

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
    color: var(--accent);
}
.nav a.active::after {
    width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 90, 138, 0.9) 100%), url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.subhead {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.cta-button:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.cta-link {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-link:hover {
  color: rgba(255,255,255,0.85);
}

/* Services */
.services {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card h3 a {
  color: var(--primary);
}

.service-card h3 a:hover {
  color: var(--accent);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullets li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* About */
.about {
  padding: 5rem 0;
}

.about h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.about h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.about p {
  color: var(--text-muted);
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 700px;
}

.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq details {
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.faq summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 300;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--text-muted);
}

/* Contact */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.g-recaptcha {
  margin-bottom: 1.25rem;
}

.form-messages {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-details {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-details h3 {
  margin-bottom: 1.5rem;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-details i {
  color: var(--accent);
  width: 1rem;
}

.contact-details address {
  font-style: normal;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

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

.site-footer p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.nap {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

.nap a {
  color: rgba(255,255,255,0.7);
}

.social {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social a {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  transition: color var(--transition);
}

.social a:hover {
  color: #fff;
}

/* Service Pages */
.hero--sub {
  padding: 4rem 0;
  text-align: center;
}

.hero--sub h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero--sub h1 i {
  font-size: 2rem;
}

.content {
  padding: 4rem 0;
}

.content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  text-align: center;
}

.content p {
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.content .checklist,
.content .bullets {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cta-strip {
  background: var(--bg-alt);
  padding: 3rem 0;
  text-align: center;
}

.cta-strip p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.cta-strip .cta-button {
  margin: 0;
}

/* Section Intro */
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: -1.5rem auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Industries Section */
.industries {
  padding: 5rem 0;
}

.industries h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.industry-item {
  background: var(--bg-alt);
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}

.industry-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.industry-item i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.industry-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.industry-item p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
}

/* How We Work Section */
.how-we-work {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.how-we-work h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
}

/* Floating 24/7 Phone Bubble */
.floating-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: bubble-pulse 2s ease-in-out infinite;
}

.floating-bubble:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
  animation: none;
}

.floating-bubble i {
  font-size: 1.25rem;
  animation: phone-ring 1.5s ease-in-out infinite;
}

.floating-bubble:hover i {
  animation: none;
}

.bubble-text {
  font-size: 0.875rem;
  line-height: 1.3;
  white-space: nowrap;
}

.bubble-text strong {
  font-weight: 600;
}

@keyframes bubble-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.6);
  }
}

@keyframes phone-ring {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50%, 100% {
    transform: rotate(0deg);
  }
}

/* Pricing Page Styles */
.pricing-section {
  padding: 5rem 0;
}
.pricing-section:nth-child(even) {
    background: var(--bg-alt);
}

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

.pricing-card {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 2px 10px;
    font-size: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table th, .pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    height: auto;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .services, .about, .faq, .contact, .industries, .how-we-work, .pricing-section {
    padding: 3.5rem 0;
  }

  .section-intro {
    margin: -0.5rem auto 2rem;
    font-size: 1rem;
  }

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

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

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

  .process-step {
    padding: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-details {
    order: -1;
  }

  .faq details {
    max-width: 100%;
  }

  .floating-bubble {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
  }

  .bubble-text {
    font-size: 0.8rem;
  }

  .floating-bubble i {
    font-size: 1.1rem;
  }
}
