/* RapidTech Landing Page Styles */

/* Color Variables - Change these to update the entire site theme */
:root {
  /* Primary accent colors (currently cyan) */
  --primary-color: #06b6d4;
  --primary-hover: #0891b2;
  --primary-text: #22d3ee;
  --primary-check: #06b6d4;
  --primary-border: #06b6d4;

  /* Gradient colors */
  --hero-gradient-from: #4b5563;
  --hero-gradient-to: #1f2937;
  --header-gradient-from: #4b5563;
  --header-gradient-to: #1f2937;

  /* Typography */
  --font-krona: "Krona One", cursive;
  --font-chivo: "Chivo Mono", monospace;
  --font-alata: "Alata", sans-serif;
}

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

body {
  font-family: var(--font-alata);
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(
    135deg,
    var(--header-gradient-from) 0%,
    var(--header-gradient-to) 100%
  );
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  font-family: var(--font-krona);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

/* Hero */
.hero {
  background: var(--hero-gradient-to);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 60px;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-family: var(--font-krona);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.slogan {
  font-family: var(--font-chivo);
  font-size: 1.5rem;
  color: var(--primary-text);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero .hero-description:last-of-type {
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Services */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  font-family: var(--font-krona);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4a4a4a;
}

.service-list {
  list-style: none;
  text-align: left;
}

.service-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-check);
  font-weight: bold;
}

.service-list li.device-note:before {
  content: "•";
  color: var(--primary-check);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

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

.contact-info h2 {
  font-family: var(--font-krona);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.main-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.sub-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-border);
}

.feature h4 {
  color: #4a4a4a;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

/* Form Styles */
.quote-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-form h3 {
  font-family: var(--font-krona);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-alata);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-border);
}

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

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

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-alata);
}

.submit-btn:hover {
  background: var(--primary-hover);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* Checkbox Styles */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.2rem;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Footer */
footer {
  background: #2c2c2c;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .slogan {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

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

  .features,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 250px;
  }

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

  .slogan {
    font-size: 1rem;
  }

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

  .container {
    padding: 0 15px;
  }
}
