/* AT Time Stylesheet */

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Styles */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

/* Navigation */
.bg-blue-600 {
  background-color: #1e40af;
}

nav {
  background-color: #1e40af;
  color: white;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}

.nav-logo img {
  max-height: 2.5rem;
  margin-right: 0.5rem;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
  }
  
  .mobile-toggle {
    display: none;
  }
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.mobile-toggle button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  background-color: #1e40af;
  color: white;
  padding: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 0.5rem;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:hover {
  text-decoration: underline;
}

.mobile-menu li:last-child a {
  border-bottom: none;
}

/* General Section Styles */
section {
  padding: 2rem 0;
}

.section-title {
  color: #0047b3;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #0047b3;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgb(85 85 85 / 80%), rgb(51 51 51 / 80%)), url(img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #f3f4f6 100%);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    max-width: none;
    margin: 0;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: auto;
  }
}

.btn-apple {
  background-color: #000;
  color: #fff;
}

.btn-google {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.btn i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.btn-text {
  text-align: left;
}

.btn-small {
  font-size: 0.75rem;
}

.btn-large {
  font-size: 1.25rem;
}

/* Contact Section */
#contact, .contact-section {
  background-color: #f5f5f5;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  #contact, .contact-section {
    padding: 3.5rem 0;
  }
}

#contact h2, .contact-section h2 {
  color: #0047b3;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

#contact h2::after, .contact-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #0047b3;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-info {
  width: 100%;
  order: 2;
}

.contact-form {
  width: 100%;
  order: 1;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 0;
  }
  
  .contact-info {
    width: 40%;
    order: 1;
  }
  
  .contact-form {
    width: 55%;
    order: 2;
  }
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block > div {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-block i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: #1e40af;
  flex-shrink: 0;
}

.info-block h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: bold;
}

.info-block p {
  margin: 0;
  color: #666;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .info-block h4 {
    font-size: 1.125rem;
  }
  
  .info-block p {
    font-size: 1rem;
  }
}

.contact-logo {
  max-width: 100%;
  margin-bottom: 30px;
}

.contact-form {
  width: 60%;
  padding: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-label {
  width: 100%;
  text-align: left;
  margin-bottom: 0.375rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

textarea.form-input {
  min-height: 120px;
}

.submit-button {
  background-color: #1e40af;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
  margin-top: 0.5rem;
}

.submit-button:hover {
  background-color: #003380;
}

@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.25rem;
  }
  
  .form-label {
    width: 25%;
    text-align: right;
    padding-right: 1rem;
    margin-bottom: 0;
  }
  
  .form-input {
    width: 75%;
  }
  
  .submit-button {
    margin-left: 25%;
    width: auto;
    margin-top: 0;
  }
}

/* Footer */
.footer {
  background-color: #1e40af;
  color: white;
  padding: 1.5rem 0;
}

.copyright {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Features Section */
.section-gray {
  background-color: #f5f5f5;
  padding: 2.5rem 0;
}

.section-white {
  background-color: #fff;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .section-gray,
  .section-white {
    padding: 3.5rem 0;
  }
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.75rem;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
  }
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.25rem;
  }
}

/* Benefits Section */
.benefits-list {
  list-style-type: disc;
  list-style-position: outside;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.benefits-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

/* Screenshots Section */
.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.screenshot-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .screenshot-card {
    padding: 1.5rem;
  }
}

.screenshot-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .screenshot-title {
    font-size: 1.25rem;
  }
}

.screenshot-image {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Support Section */
.support-container {
  max-width: 42rem;
  margin: 0 auto;
}

.support-item {
  margin-bottom: 1rem;
}

.support-link {
  color: #1e40af;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
}

.faq-list {
  list-style-type: disc;
  list-style-position: inside;
}

.faq-list li {
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    width: 100%;
  }
  
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
  }
  
  .form-input {
    width: 100%;
  }
  
  .submit-button {
    margin-left: 0;
  }
}
