/* Import navbar styles */
@import url('navbar.css');

:root {
  --primary-color: #0066cc;
  --primary-dark: #004499;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --text-color: #212529;
  --accent-color: #28a745;
}

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  padding-top: 80px; /* Space for fixed navbar */
  background-color: #ffffff;
}

main {
  padding: 0;
}

section {
  margin-bottom: 4rem;
}

#hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

#hero > * {
  position: relative;
  z-index: 2;
}

#hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

#services {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
}

footer {
  background: linear-gradient(135deg, #333 0%, #222 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 0;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Professional Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Container for consistent spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* About Page Styles */
#about-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text h3,
.about-mission h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text p,
.about-mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.values-section {
  margin-bottom: 4rem;
}

.values-section h3,
.team-section h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.values-grid,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-item,
.expertise-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover,
.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.value-item h4,
.expertise-item h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p,
.expertise-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.team-section {
  margin-bottom: 4rem;
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid var(--primary-color);
}

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

.cta-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .about-text h3,
  .about-mission h3,
  .values-section h3,
  .team-section h3 {
    font-size: 1.8rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-section h3 {
    font-size: 1.6rem;
  }
}

/* Services Page Styles */
#services-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.services-intro h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.services-intro p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.service-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-color);
}

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

.service-card h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

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

.service-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
}

/* Process Section */
.process-section {
  margin-bottom: 4rem;
  text-align: center;
}

.process-section h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* Pricing Styles for Web Maintenance */
#maintenance-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.maintenance-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.maintenance-intro h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.maintenance-intro p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.pricing-section {
  margin-bottom: 5rem;
}

.pricing-section h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.pricing-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.package-header h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  color: #666;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: #666;
}

.package-description {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.75rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

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

.package-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 80%;
  margin-top: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Benefits and FAQ sections */
.why-maintenance,
.faq-section {
  margin-bottom: 4rem;
}

.why-maintenance h3,
.faq-section h3 {
  color: var(--primary-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.benefit-item,
.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.benefit-item h4,
.faq-item h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-item p,
.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero h2 {
    font-size: 2.2rem;
  }
  
  #hero p {
    font-size: 1.1rem;
  }
  
  #services h2 {
    font-size: 2rem;
  }
  
  /* Services grid mobile responsiveness */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h4 {
    font-size: 1.3rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
  }
}
 