/* Main CSS for Munir Systems Website */

/* Color Variables */
:root {
  --primary: #2e1a75;    /* Deep Purple - primary brand color */
  --secondary: #ff5722;  /* Orange - accent color */
  --gray: #555555;       /* Gray for text */
  --light-gray: #f5f5f5; /* Light gray for backgrounds */
  --light: #ffffff;      /* White */
  --dark: #333333;       /* Dark gray/almost black */
  --accent: #1db9c3;     /* Teal - secondary accent */
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Standard shadow */
  --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Hover shadow */
}

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

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  color: var(--gray);
  background-color: var(--light);
  line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
}

ul {
  margin-bottom: 20px;
  list-style-position: inside;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background-color: #24135e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--light);
}

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

.btn-shopify {
  display: inline-block;
  background-color: var(--accent);
  color: var(--light);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(29, 185, 195, 0.3);
}

.btn-shopify:hover {
  background-color: #17a2ac;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29, 185, 195, 0.4);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.section-subtitle {
  color: var(--gray);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  color: var(--light);
  font-size: 24px;
  font-weight: 700;
}

/* Updated logo sizing in header */
.logo img {
  width: 50px; /* Adjust this value to your preference */
  height: auto;
  margin-right: 15px;
}

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

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--light);
  font-weight: 500;
  position: relative;
}

.nav-menu a:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover:before,
.nav-menu a.active:before {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--light);
}

.nav-menu a.active {
  color: var(--secondary);
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--light);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: 1000;
  padding: 80px 20px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.mobile-menu ul li a {
  color: var(--light);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--light-gray);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.05;
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-title {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Page Header Section */
.page-header {
  background-color: var(--light-gray);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

/* About Section */
.about-section,
.about {
  padding: 80px 0;
  background-color: var(--light);
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-list {
  list-style: none;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.about-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--gray);
}

/* Platforms Section */
.platforms {
  padding: 80px 0;
  background-color: var(--light);
}

.platform-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.platform-card {
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  width: 180px;
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.platform-icon {
  font-size: 36px;
  background-color: var(--primary);
  color: var(--light);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.platform-title {
  font-size: 18px;
  margin-bottom: 0;
}

/* Platform Details Section */
.platform-details {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.platforms-grid {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
}

.platforms-grid .platform-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.platforms-grid .platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.platforms-grid .platform-header {
  background-color: var(--primary);
  color: var(--light);
  padding: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.platforms-grid .platform-icon {
  background-color: var(--light);
  color: var(--primary);
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 24px;
  margin: 0 20px 0 0;
}

.platforms-grid .platform-name {
  color: var(--light);
  margin-bottom: 5px;
}

.platforms-grid .platform-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.platforms-grid .platform-body {
  padding: 30px;
}

.platforms-grid .platform-description {
  margin-bottom: 20px;
}

.platforms-grid .platform-features {
  margin-bottom: 25px;
  padding-left: 0;
}

.platforms-grid .platform-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.platforms-grid .platform-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.platforms-grid .platform-link {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.platforms-grid .platform-link:hover {
  background-color: var(--secondary);
}

/* Platform Tabs */
.platform-section {
  padding: 80px 0;
  background-color: var(--light);
}

.platform-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 10px;
}

.platform-tab {
  padding: 12px 25px;
  background-color: var(--light-gray);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.platform-tab:hover {
  background-color: #e0e0e0;
}

.platform-tab.active {
  background-color: var(--primary);
  color: var(--light);
}

.platform-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.platform-content .platform-logo {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.platform-content .platform-name {
  font-size: 28px;
  margin-bottom: 15px;
}

.platform-content .platform-info {
  color: var(--gray);
  margin-bottom: 25px;
}

.platform-content .platform-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.platform-content .platform-button:hover {
  background-color: var(--secondary);
}

/* Product Categories Section */
.product-categories {
  padding: 80px 0;
  background-color: var(--light);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.category-card {
  position: relative;
  width: 350px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: var(--light);
  transition: all 0.3s ease;
}

.category-title {
  color: var(--light);
  margin-bottom: 10px;
  font-size: 24px;
}

.category-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 14px;
}

.category-link {
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.category-link:hover {
  color: var(--secondary);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.benefits-title {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.benefits-description {
  color: var(--gray);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.benefit-description {
  color: var(--gray);
}

/* Platform Stats Section */
.platform-stats {
  padding: 80px 0;
  background-color: var(--light);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  width: 200px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.stat-title {
  font-size: 18px;
  margin-bottom: 0;
}

/* Mission & Values Section */
.mission-values {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 300px;
  transition: all 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.mission-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.mission-description {
  color: var(--gray);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--light);
}

/* History Timeline Section */
.history-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  margin-left: 50%;
}

.timeline-content {
  background-color: var(--light);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-description {
  color: var(--gray);
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  top: 0;
  left: calc(100% + 25px);
  background-color: var(--secondary);
  color: var(--light);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 600;
}

.timeline-item:nth-child(even) .timeline-year {
  left: auto;
  right: calc(100% + 25px);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--light);
}

.contact-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 300px;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-detail {
  color: var(--gray);
  margin-bottom: 10px;
}

.contact-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.map-content {
  flex: 1;
  min-width: 300px;
}

.map-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.map-content p {
  margin-bottom: 15px;
}

.map-image {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 300px;
}

.map-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, -50%);
  }
  40% {
    transform: translate(-50%, -70%);
  }
  60% {
    transform: translate(-50%, -60%);
  }
}

/* Hours Section */
.hours-section {
  padding: 80px 0;
  background-color: var(--light);
}

.hours-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hours-header {
  background-color: var(--primary);
  color: var(--light);
  padding: 20px;
  text-align: center;
}

.hours-title {
  color: var(--light);
  margin-bottom: 5px;
}

.hours-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.hours-body {
  padding: 30px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

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

.day {
  font-weight: 600;
  color: var(--primary);
}

.time {
  color: var(--gray);
}

/* Store Section */
.store-section {
  padding: 80px 0;
  background-color: var(--primary);
  text-align: center;
  color: var(--light);
}

.store-title {
  color: var(--light);
  font-size: 36px;
  margin-bottom: 15px;
}

.store-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.store-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--light);
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.store-button:hover {
  background-color: #e64a19;
  transform: translateY(-5px);
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: var(--light);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Footer logo sizing */
.footer-logo img {
  width: 50px; /* Smaller in the footer */
  height: auto;
  margin-right: 15px;
}

.footer-links-section {
  flex: 1;
  min-width: 200px;
}

.footer-heading {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation for scroll */
.animate-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-init.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 2;
    padding-right: 0;
    margin-top: 40px;
  }

  .hero-image {
    order: 1;
  }

  .about-container,
  .map-container {
    flex-direction: column;
    text-align: center;
  }

  .about-list,
  .platforms-grid .platform-features {
    text-align: left;
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 60px;
  }

  .timeline-year {
    left: 0;
  }

  .timeline-item:nth-child(even) .timeline-year {
    left: 0;
    right: auto;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .page-header {
    padding: 40px 0;
  }

  .page-title {
    font-size: 32px;
  }

  .about-section,
  .about,
  .features,
  .platforms,
  .platform-details,
  .platform-section,
  .product-categories,
  .benefits-section,
  .platform-stats,
  .mission-values,
  .team-section,
  .history-section,
  .contact-info-section,
  .map-section,
  .hours-section,
  .store-section {
    padding: 50px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }

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

  .btn {
    width: 100%;
  }

  .platform-tabs {
    flex-direction: column;
  }

  .platform-tab {
    width: 100%;
    text-align: center;
  }

  .platform-content {
    padding: 20px;
  }
}