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

:root {
  --primary: #1a2b4a;
  --secondary: #2d5a8c;
  --accent: #f97316;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1001;
}

.logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-name {
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.cta-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  margin-top: 30px;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(45, 90, 140, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-content .highlight {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border: 2px solid var(--primary);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.05rem;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.browser-header {
  background: #e5e7eb;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}
.dot-yellow {
  background: #fbbf24;
}
.dot-green {
  background: #10b981;
}

.browser-content {
  padding: 2rem;
  background: var(--white);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 5px;
}

.mockup-bar.large {
  width: 80%;
}
.mockup-bar.medium {
  width: 60%;
}
.mockup-bar.small {
  width: 40%;
}

/* Stats Section */
.stats {
  padding: 3rem 2rem;
  background: var(--primary);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* Problem Section */
.problem {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

.problem-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.problem-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Solution Section */
.solution {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

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

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.solution-image {
  position: relative;
}

.checklist {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.checklist-item:last-child {
  border-bottom: none;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* Packages Section */
.packages {
  padding: 6rem 2rem;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.package-price {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-price span {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
}

.package-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.7rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: start;
  gap: 0.8rem;
}

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

.package-cta {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.pricing-card.featured .package-cta {
  background: var(--accent);
}

.pricing-card.featured .package-cta:hover {
  background: #ea580c;
}

/* Maintenance Section */
.maintenance {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.maintenance-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.maintenance-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.maintenance-price {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.maintenance-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.maintenance-features {
  list-style: none;
}

.maintenance-features li {
  padding: 0.6rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: start;
  gap: 0.8rem;
}

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

/* Process Section */
.process {
  padding: 6rem 2rem;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "→";
  position: absolute;
  right: -1.5rem;
  top: 40px;
  font-size: 2rem;
  color: var(--border);
  font-weight: 300;
}

.process-step:last-child::after {
  display: none;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact Form Section */
.contact-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  -webkit-appearance: none; /* Removes iOS default dropdown styling */
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.form-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
  display: flex;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
  display: flex;
}

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

.contact-info-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-item p {
  color: var(--text-light);
}

.contact-info-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--accent);
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  color: var(--primary);
  font-weight: 600;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #0f1419;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-about p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Blog Section - NEW */
.blog-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-meta i {
  color: var(--accent);
}

.blog-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
  gap: 1rem;
}

.view-all-btn {
  text-align: center;
  margin-top: 3rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--white);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.1);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-item.active .faq-question {
  background: var(--bg-light);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--accent), #ea580c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.faq-question h3 {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.faq-toggle {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--accent);
  transform: rotate(180deg);
}

.faq-toggle i {
  color: var(--accent);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-content {
  padding-left: 3.5rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--primary);
  font-weight: 600;
}

.faq-answer-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

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

/* CTA at bottom of FAQ */
.faq-cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 3rem 2rem;
  border-radius: 16px;
  color: var(--white);
}

.faq-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-btn-primary,
.faq-btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  border: none;
  justify-content: center;
}

.faq-btn-primary {
  background: var(--accent);
  color: var(--white);
}

.faq-btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.faq-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.faq-btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 978px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    width: 280px;
    text-align: left;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .problem-grid,
  .pricing-grid,
  .maintenance-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-step::after {
    display: none;
  }

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero {
    margin-top: 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .contact-content {
    padding: 2rem 1.5rem;
  }
  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem 1rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .faq-question-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 0.9rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .faq-toggle i {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding-left: 0;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .faq-cta h3 {
    font-size: 1.4rem;
  }

  .faq-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

/* Projects Section */
.projects-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Project Card */
.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 43, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-content {
  text-align: center;
  color: var(--white);
}

.project-overlay-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.project-overlay-text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Project Content */
.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.project-description {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-badge {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-link-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.project-link-btn:hover {
  background: #ea580c;
  transform: translateX(3px);
}

/* Projects CTA */
.projects-cta {
  text-align: center;
  margin-top: 3rem;
}

.projects-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Loading State */
.projects-loading,
.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.spinner {
  border: 3px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .projects-section {
    padding: 4rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .project-image {
    height: 200px;
  }

  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .faq-question h3 {
    font-size: 1.05rem;
  }

  .faq-answer-content {
    padding-left: 2.5rem;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  .faq-cta h3 {
    font-size: 1.6rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.6rem;
  }

  .faq-question h3 {
    font-size: 0.9rem;
  }
  .project-link-btn {
    padding: 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
