/* Ottawa IT Support - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #050a36;
  --bg-main: #0a1354;
  --bg-gradient: linear-gradient(180deg, #04092b 0%, #0a1458 35%, #0d1b70 70%, #060b38 100%);
  --cyan-accent: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.4);
  --cyan-soft: #5ce1e6;
  --text-white: #ffffff;
  --text-muted: #b8c4ee;
  --text-dim: #8493cc;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Typography & Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan-accent);
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.section-title-white {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Header Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 10, 54, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--text-white);
}

.brand-logo svg {
  width: 30px;
  height: 30px;
  color: var(--cyan-accent);
}

.nav-grid-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.nav-grid-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: scale(1.08);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}

.circle-badge-container {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 90vw;
  max-height: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-outer {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(0, 229, 255, 0.25);
  animation: rotateClockwise 40s linear infinite;
}

.ring-mid {
  width: 88%;
  height: 88%;
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), inset 0 0 30px rgba(0, 229, 255, 0.15);
}

.ring-inner {
  width: 76%;
  height: 76%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  animation: rotateCounterClockwise 35s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-star-icon {
  width: 50px;
  height: 50px;
  color: var(--cyan-accent);
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 10px var(--cyan-accent));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 300;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  text-align: center;
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text p strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  transition: var(--transition-fast);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

/* WE SUPPORTS Section */
.supports-section {
  padding: 4rem 0 6rem 0;
}

.supports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 2rem;
}

.supports-col {
  padding: 1rem 2rem;
}

.supports-col:not(:last-child) {
  border-right: 1px dashed rgba(0, 229, 255, 0.4);
}

.supports-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.supports-col li {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.supports-col li::before {
  content: "•";
  color: var(--cyan-accent);
  font-size: 1.4rem;
}

/* SERVICES Section */
.services-section {
  padding: 4rem 0 6rem 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--cyan-accent);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: rgba(0, 229, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.service-icon-box svg {
  width: 36px;
  height: 36px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.other-services-card {
  grid-column: span 1;
}

.other-services-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.other-services-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.other-services-list li::before {
  content: "•";
  color: var(--cyan-accent);
}

/* CAREERS Section */
.careers-section {
  padding: 5rem 0;
  text-align: center;
}

.careers-content {
  max-width: 780px;
  margin: 0 auto;
}

.careers-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: #ffffff;
  color: #050a36;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition-fast);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn-pill:hover {
  background: var(--cyan-accent);
  color: #050a36;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

/* CONTACT Section */
.contact-section {
  padding: 5rem 0;
}

.contact-form {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-bottom-color: var(--cyan-accent);
  box-shadow: 0 1px 0 var(--cyan-accent);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.contact-submit-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.btn-contact-submit {
  background: transparent;
  border: none;
  color: var(--cyan-accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.5rem 1.5rem;
}

.btn-contact-submit:hover {
  text-shadow: 0 0 12px var(--cyan-glow);
  transform: scale(1.05);
}

/* Footer Section */
.site-footer {
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 43, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.footer-info-list {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 300;
}

.newsletter-box {
  max-width: 550px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--text-dim);
}

.newsletter-input:focus {
  border-bottom-color: var(--cyan-accent);
}

.btn-subscribe {
  width: 100%;
  padding: 0.85rem;
  background: var(--cyan-accent);
  color: #050a36;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-subscribe:hover {
  background: #33efff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

.copyright-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--cyan-accent);
  color: #050a36;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .stats-grid,
  .supports-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .supports-col:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .supports-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .supports-col {
    border-right: none !important;
    border-bottom: 1px dashed rgba(0, 229, 255, 0.3);
    padding-bottom: 1.5rem;
  }

  .circle-badge-container {
    width: 340px;
    height: 340px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }
}
