/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #1e3a8a;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e3a8a;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.highlight {
  color: #059669;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #059669;
  color: #2c3e50;
}

.btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
  background: white;
  color: #1e3a8a;
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-cards {
  position: relative;
  width: 300px;
  height: 300px;
}

.card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  animation: float 6s ease-in-out infinite;
}

.card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 50px;
  right: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: bgMove 20s linear infinite;
  opacity: 0.3;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  padding: 100px 0;
  background: white;
}

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

.service-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-item:hover {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
}

.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #5a6fd8;
  gap: 12px;
}

/* Vision Mission */
.vision-mission {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

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

.vm-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.5rem;
  color: #059669;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vm-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #059669;
}

.vm-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: #2c3e50;
  text-align: center;
}

.cta-content {
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #1a252f;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #059669;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #059669;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #059669;
  color: #2c3e50;
  transform: translateY(-3px);
}

.contact-info {
  color: #ccc;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bgMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 999;
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .floating-cards {
    width: 250px;
    height: 250px;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .feature-card,
  .service-item {
    padding: 30px 20px;
  }

  .container {
    padding: 0 15px;
  }
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.page-header-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.breadcrumb a {
  color: #059669;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.7;
}

/* Services Page Styles */
.services-intro {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Service Detail Sections */
.service-detail {
  padding: 100px 0;
  background: white;
}

.service-detail.alt {
  background: #f8f9fa;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.service-detail.alt .service-content {
  grid-template-columns: 300px 1fr;
}

.service-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #1e3a8a;
  font-size: 1.2rem;
  min-width: 20px;
}

.feature-item span {
  font-weight: 500;
  color: #2c3e50;
}

.service-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 50px rgba(102, 126, 234, 0.4);
}

.visual-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #059669;
}

.visual-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.visual-card p {
  opacity: 0.9;
  font-size: 1rem;
}

/* Software Modules */
.software-modules {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.module-item {
  background: rgba(102, 126, 234, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}

.module-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.module-item h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-item h4 i {
  color: #1e3a8a;
  font-size: 1.1rem;
}

.module-item p {
  color: #666;
  line-height: 1.6;
}

/* Reporting Features */
.reporting-features {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.report-item {
  background: rgba(102, 126, 234, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}

.report-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.report-item h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-item h4 i {
  color: #1e3a8a;
  font-size: 1.1rem;
}

.report-item p {
  color: #666;
  line-height: 1.6;
}

/* Service Quote */
.service-quote {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 15px;
  text-align: center;
}

.service-quote blockquote {
  color: white;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  position: relative;
}

.service-quote blockquote::before {
  content: '"';
  font-size: 3rem;
  color: #059669;
  position: absolute;
  left: -20px;
  top: -10px;
}

.service-quote blockquote::after {
  content: '"';
  font-size: 3rem;
  color: #059669;
  position: absolute;
  right: -20px;
  bottom: -30px;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .service-detail.alt .service-content {
    grid-template-columns: 1fr;
  }

  .visual-card {
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-header-content h1 {
    font-size: 2.2rem;
  }

  .service-text h3 {
    font-size: 1.8rem;
  }

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

  .feature-item {
    text-align: left;
  }

  .breadcrumb {
    flex-direction: column;
    gap: 5px;
  }

  .service-quote blockquote::before,
  .service-quote blockquote::after {
    position: static;
    display: block;
    line-height: 1;
  }

  .service-quote blockquote::before {
    margin-bottom: -10px;
  }

  .service-quote blockquote::after {
    margin-top: -10px;
  }
}

/* Software Page Styles */
.software-hero {
  padding: 100px 0;
  background: #f8f9fa;
}

.software-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.software-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Software Mockup */
.software-mockup {
  perspective: 1000px;
}

.mockup-screen {
  background: #2c3e50;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.mockup-screen:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: #34495e;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mockup-buttons {
  display: flex;
  gap: 8px;
}

.mockup-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e74c3c;
}

.mockup-buttons span:nth-child(2) {
  background: #f39c12;
}

.mockup-buttons span:nth-child(3) {
  background: #27ae60;
}

.mockup-title {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.mockup-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 300px;
}

.mockup-sidebar {
  background: #34495e;
  padding: 20px 0;
}

.sidebar-item {
  padding: 12px 20px;
  color: #bdc3c7;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.sidebar-item.active,
.sidebar-item:hover {
  background: #1e3a8a;
  color: white;
}

.mockup-main {
  background: white;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-placeholder {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-bars {
  display: flex;
  gap: 15px;
  height: 100%;
  align-items: end;
}

.bar {
  width: 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-out;
}

@keyframes growBar {
  from {
    height: 0;
  }
}

/* Software Features */
.software-features {
  padding: 100px 0;
  background: white;
}

.features-showcase {
  display: grid;
  gap: 80px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}

.feature-showcase.reverse {
  grid-template-columns: 1fr 200px;
}

.feature-icon-large {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.feature-icon-large:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2c3e50;
}

.feature-list li i {
  color: #27ae60;
  font-size: 0.9rem;
}

/* Technology Stack */
.tech-stack {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.tech-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.tech-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.tech-item p {
  color: #666;
  line-height: 1.6;
}

/* Workflow */
.workflow {
  padding: 100px 0;
  background: white;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  align-items: center;
}

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

.step-number {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 25px;
  height: 25px;
  background: #059669;
  color: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  position: relative;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  justify-content: center;
  color: #1e3a8a;
  font-size: 1.5rem;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: #f8f9fa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.pricing-card.featured {
  border: 3px solid #1e3a8a;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #059669;
  color: #2c3e50;
  padding: 8px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.2rem;
  color: #1e3a8a;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
}

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

.pricing-features ul {
  list-style: none;
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2c3e50;
  text-align: left;
}

.pricing-features li i {
  color: #27ae60;
  font-size: 0.9rem;
  min-width: 16px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6c5b95 100%);
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
  background: #059669;
  color: #2c3e50;
}

.pricing-card.featured .pricing-btn:hover {
  background: #e6c200;
}

/* Responsive Design for Software */
@media (max-width: 1024px) {
  .software-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .software-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .mockup-sidebar {
    display: none;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 1.6rem;
  }

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

  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

/* Training Page Styles */
.training-philosophy {
  padding: 100px 0;
  background: #f8f9fa;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  font-style: italic;
}

.philosophy-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat-box {
  text-align: center;
  padding: 25px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.stat-box .stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.learning-illustration {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 300px;
}

.learning-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.learning-card:hover {
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.learning-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #059669;
}

.learning-card span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Training Programs */
.training-programs {
  padding: 100px 0;
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #1e3a8a;
}

.program-card.featured {
  border: 2px solid #059669;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.program-badge {
  position: absolute;
  top: 15px;
  right: -25px;
  background: #059669;
  color: #2c3e50;
  padding: 5px 35px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
}

.program-header {
  text-align: center;
  margin-bottom: 25px;
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.program-card.featured .program-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #2c3e50;
}

.program-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.program-level {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #1e3a8a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.program-card.featured .program-level {
  background: rgba(255, 215, 0, 0.2);
  color: #b8860b;
}

.program-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-features ul {
  list-style: none;
  margin-bottom: 20px;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #2c3e50;
}

.program-features li i {
  color: #27ae60;
  font-size: 0.8rem;
}

.program-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e3a8a;
  font-weight: 500;
  background: rgba(102, 126, 234, 0.05);
  padding: 10px 15px;
  border-radius: 10px;
}

.program-card.featured .program-duration {
  background: rgba(255, 215, 0, 0.1);
  color: #b8860b;
}

/* Training Scope */
.training-scope {
  padding: 100px 0;
  background: #f8f9fa;
}

.scope-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.scope-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.scope-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.scope-items {
  display: grid;
  gap: 25px;
}

.scope-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.scope-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.scope-content-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.scope-content-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.scope-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.learning-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.process-step p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: #1e3a8a;
  transform: rotate(90deg);
}

/* Training Benefits */
.training-benefits {
  padding: 100px 0;
  background: white;
}

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

.benefit-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-item:hover {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Training Methods */
.training-methods {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.method-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.method-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: white;
}

.method-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.method-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.method-card ul {
  list-style: none;
  text-align: left;
}

.method-card li {
  color: #2c3e50;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.method-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* Responsive Design for Training */
@media (max-width: 1024px) {
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .scope-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .learning-process {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
  }

  .process-arrow {
    display: none;
  }

  .programs-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .philosophy-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .learning-illustration {
    max-width: 100%;
  }

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

  .scope-items {
    gap: 20px;
  }

  .scope-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

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

  .philosophy-text h2 {
    font-size: 2rem;
  }

  .scope-text h2 {
    font-size: 2rem;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.form-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text a {
  color: #1e3a8a;
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6c5b95 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info-container {
  display: grid;
  gap: 30px;
}

.contact-info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.info-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.social-contact {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.social-contact h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
}

.social-links-contact {
  display: grid;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1e3a8a;
  color: white;
  transform: translateX(5px);
}

.social-link i {
  font-size: 1.2rem;
  width: 20px;
}

/* Quick Contact */
.quick-contact {
  padding: 100px 0;
  background: white;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.quick-contact-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.quick-contact-item:hover {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.quick-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.quick-contact-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.quick-contact-item p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.quick-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6c5b95 100%);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: #1e3a8a;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 15px 0 0;
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: white;
}

.map-container {
  margin-top: 50px;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  opacity: 0.3;
}

.map-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #059669;
}

.map-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.map-btn {
  display: inline-block;
  background: #059669;
  color: #2c3e50;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 40px 30px;
  }

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

  .quick-contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

  .faq-question {
    padding: 20px;
  }

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

  .map-placeholder {
    height: 300px;
  }

  .map-content h3 {
    font-size: 1.5rem;
  }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Success message */
.success-message {
  background: #27ae60;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* KVKK Page Styles */
.kvkk-content {
  padding: 80px 0;
  background: #f8f9fa;
}

.kvkk-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kvkk-section {
  margin-bottom: 40px;
}

.kvkk-section h2 {
  color: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.kvkk-section p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 15px;
}

.kvkk-section ul {
  color: #4b5563;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 15px;
}

.kvkk-section li {
  margin-bottom: 8px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-method {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
}

.contact-method h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-method p {
  color: #374151;
  margin: 0;
}

/* KVKK Popup */
.kvkk-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.kvkk-popup.show {
  display: flex;
}

.kvkk-popup-content {
  background: white;
  max-width: 90%;
  max-height: 90%;
  width: 800px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.kvkk-popup-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kvkk-popup-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.kvkk-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.kvkk-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.kvkk-popup-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.kvkk-popup-footer {
  padding: 20px 30px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.kvkk-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kvkk-btn-primary {
  background: #1e3a8a;
  color: white;
}

.kvkk-btn-primary:hover {
  background: #1e40af;
}

.kvkk-btn-secondary {
  background: #e5e7eb;
  color: #374151;
}

.kvkk-btn-secondary:hover {
  background: #d1d5db;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .kvkk-text {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .kvkk-popup-content {
    max-width: 95%;
    margin: 20px;
  }

  .kvkk-popup-header {
    padding: 15px 20px;
  }

  .kvkk-popup-body {
    padding: 20px;
  }

  .kvkk-popup-footer {
    padding: 15px 20px;
    flex-direction: column;
  }

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