/* Remove focus outline and box-shadow from all elements */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove tap highlight color globally */
* {
  -webkit-tap-highlight-color: transparent !important;
  -moz-tap-highlight-color: transparent !important;
  -ms-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}

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

html {
  scroll-behavior: smooth;
}
/* Professional Yellow HR Line */
hr {
  border: none;                /* Remove default browser style */
  height: 3px;                 /* Thickness of the line */
  background: linear-gradient(to right, #FFD700, #FFC300); /* Smooth yellow gradient */
  border-radius: 3px;          /* Slightly rounded edges */
  margin: 1.5rem 0;            /* Space above and below */
  width: 80%;                  /* Not too wide */
  max-width: 600px;            /* Keep it neat on large screens */
  margin-left: auto;
  margin-right: auto;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* CSS Variables */
:root {
  --primary-color: #5c4033;
  --accent-color: #ffc107;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

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

.logo-container {
  margin-bottom: 2rem;
}

.logo-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-logo i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

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

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

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

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

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1001;
  transition: var(--transition);
  padding: 2rem 0;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.sidebar-logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.sidebar-menu {
  list-style: none;
}

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

.sidebar-link {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-link:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Container for left/right alignment */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

/* Button style */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Shimmer with slower pass + 3s pause */
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 215, 0, 0.7) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  25% {
    left: 150%; /* takes 1s slower pass (25% of 4s cycle) */
  }
  100% {
    left: 150%; /* stay offscreen for remaining 3s pause */
  }
}

/* Hover */
.cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* About Section */
.about {
  background: var(--white);
}

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

.about-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

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

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Features Section */
.features {
  background: var(--light-bg);
}

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

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-color), #e6ac00);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

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

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

/* Documentation Section */
.documentation {
  background: var(--white);
}

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

.doc-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border-left: 4px solid var(--accent-color);
}

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

.doc-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.doc-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.doc-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.doc-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.doc-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.doc-link:hover {
  color: var(--accent-color);
}

/* News Section */
.news {
  background: var(--light-bg);
}

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

.news-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

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

.news-date {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  min-width: 80px;
  height: fit-content;
}

.date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.date-month {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.news-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

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

.btn-secondary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: #e6ac00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 64, 51, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
}

/* Download Section */
.download {
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  color: var(--white);
}

.download .section-title {
  color: var(--white);
}

.download .section-title::after {
  background: var(--accent-color);
}

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

.download-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.download-features {
  margin-bottom: 2.5rem;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
  width: fit-content;
}

.download-btn:hover {
  background: #e6ac00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.download-btn i {
  font-size: 2rem;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-btn-small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.download-btn-large {
  font-size: 1.2rem;
  font-weight: 700;
}

.download-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.download-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.footer-description {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: var(--transition);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
 text-align: center;
  
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  color: var(--accent-color);
  width: 20px;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

  .nav-menu {
    display: none;
  }

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

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

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

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

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

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

  .news-card {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

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

  .feature-card {
    padding: 2rem 1.5rem;
  }

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

  .container {
    padding: 0 15px;
  }
}

/* Page Main Layout */
.page-main {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Active Navigation Links */
.nav-link.active,
.sidebar-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

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

/* About Page Styles */
.about-detailed {
  background: var(--white);
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 1rem;
}

.stats-section {
  margin: 4rem 0;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

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

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.value-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Features Page Styles */
.features-detailed {
  background: var(--light-bg);
}

.feature-card.detailed {
  padding: 3rem 2rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-list i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.additional-features {
  margin-top: 4rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

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

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

/* News Page Styles */
.news-detailed {
  background: var(--white);
}

.featured-news {
  margin-bottom: 4rem;
}

.featured-article {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-category {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--accent-color);
}

.recent-news {
  margin-bottom: 4rem;
}

.news-card.detailed {
  flex-direction: column;
  gap: 0;
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-category {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-categories {
  margin-top: 4rem;
}

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

.category-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

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

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.category-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Documentation Page Styles */
.documentation-detailed {
  background: var(--white);
}

.quick-start {
  margin-bottom: 4rem;
}

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

.step-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
}

.doc-categories {
  margin-bottom: 4rem;
}

.doc-card.detailed {
  padding: 2.5rem;
}

.doc-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.topic-tag {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

.faq-item {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(92, 64, 51, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.download-resources {
  margin-top: 4rem;
}

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

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.resource-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.resource-content {
  flex: 1;
}

.resource-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

.resource-download {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.resource-download:hover {
  background: #e6ac00;
  transform: scale(1.1);
}

/* Gallery Page Styles */
.gallery-detailed {
  background: var(--white);
}

.gallery-categories {
  margin-bottom: 3rem;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  background: var(--light-bg);
  color: var(--text-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.gallery-grid.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item[data-category] {
  transition: var(--transition);
}

.gallery-item.hidden {
  display: none;
}

.gallery-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

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

.gallery-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.gallery-btn {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.gallery-btn:hover {
  background: #e6ac00;
  transform: scale(1.1);
}

.gallery-actions-center {
  text-align: center;
  margin-top: 3rem;
}

/* Enhanced Lightbox */
.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 1rem;
  text-align: center;
}

.lightbox-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Download Page Styles */
.download-hero {
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  color: var(--white);
  padding: 6rem 0;
}

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

.download-features-list {
  margin: 2rem 0;
}

.download-buttons-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-btn.primary {
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
}

.app-screenshots {
  background: var(--light-bg);
}

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

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

.screenshot-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.screenshot-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.system-requirements {
  background: var(--white);
}

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

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.requirement-item {
  display: flex;
  gap: 1rem;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.requirement-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.requirement-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.requirement-content ul {
  list-style: none;
  padding: 0;
}

.requirement-content li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.requirement-content li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.installation-guide {
  background: var(--light-bg);
}

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

.step-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.features-summary {
  background: var(--white);
}

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

.feature-summary-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.feature-summary-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-summary-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-summary-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

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

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

.download-support {
  background: var(--light-bg);
}

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

.support-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.support-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.support-content p {
  color: var(--text-light);
}

.support-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.support-content a:hover {
  color: var(--accent-color);
}

/* Article Page Styles */
.article-main {
  padding-top: 100px;
  min-height: 100vh;
}

.article-header {
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb i {
  font-size: 0.8rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-date,
.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.article-category {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
}

.article-content {
  background: var(--white);
  padding: 4rem 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  margin-bottom: 3rem;
  text-align: center;
}

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.image-caption {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.9rem;
}

.article-text {
  line-height: 1.8;
  color: var(--text-dark);
}

.article-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 3rem 0 1.5rem;
  position: relative;
}

.article-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.article-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 1rem;
}

.article-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-text ul,
.article-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-text li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.article-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.schedule-table {
  margin: 2rem 0;
  overflow-x: auto;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1rem;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.schedule-table th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.schedule-table td {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.schedule-table tr:hover {
  background: var(--light-bg);
}

.call-to-action {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 3rem 0;
  border-left: 4px solid var(--accent-color);
}

.call-to-action h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.call-to-action p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light-bg);
}

.related-articles h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-content {
  padding: 1.5rem;
}

.related-content h4 {
  margin-bottom: 0.5rem;
}

.related-content h4 a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.related-content h4 a:hover {
  color: var(--accent-color);
}

.related-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-main {
  padding-top: 100px;
  min-height: 100vh;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), #4a2c20);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  background: var(--white);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-section {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  
}

.contact-info-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-info-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-info-details p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.1);
}

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

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

.submit-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.submit-btn:hover {
  background: #4a2c20;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.office-hours {
  background: var(--light-bg);
  padding: 4rem 0;
}

.office-hours h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

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

.hours-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.hours-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.hours-icon i {
  font-size: 2rem;
  color: var(--white);
}

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

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

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

.hours-list .day {
  font-weight: 600;
}

.hours-list .time {
  color: var(--text-light);
}

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

  .nav-menu {
    display: none;
  }

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

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

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

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

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

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

  .news-card {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

  .featured-article {
    grid-template-columns: 1fr;
  }

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

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

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

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .category-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .filter-btn {
    white-space: nowrap;
  }

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

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

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

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .article-text h2 {
    font-size: 1.5rem;
  }

  .schedule-table {
    font-size: 0.9rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem;
  }

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

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

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

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

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

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

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

  .feature-card {
    padding: 2rem 1.5rem;
  }

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

  .container {
    padding: 0 15px;
  }

  .page-header {
    padding: 2rem 0;
  }

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

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

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

  .support-option {
    flex-direction: column;
    text-align: center;
  }

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

  .article-text h2 {
    font-size: 1.3rem;
  }

  .call-to-action {
    padding: 2rem;
  }

  .call-to-action h3 {
    font-size: 1.5rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 2rem;
  }
}

/* Enhanced Documentation Page Styling for Professional Appearance */

/* Documentation Page Layout */
.doc-page {
  background: var(--white);
  min-height: 100vh;
}

.doc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: 100px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.doc-toc h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.doc-toc ul {
  list-style: none;
  padding: 0;
}

.doc-toc li {
  margin-bottom: 0.5rem;
}

.doc-toc a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  border-radius: 4px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.doc-toc a:hover,
.doc-toc a.active {
  color: var(--primary-color);
  background: rgba(92, 64, 51, 0.1);
  padding-left: 1rem;
}

.doc-main {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.doc-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.doc-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.doc-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.doc-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* Documentation Content Styling */
.doc-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.doc-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.doc-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
}

.doc-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 1.5rem 0 0.75rem 0;
}

.doc-content p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.doc-content ul,
.doc-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.doc-content li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* Professional Tables */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doc-table th {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doc-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.doc-table tr:hover {
  background: var(--light-bg);
}

.doc-table tr:last-child td {
  border-bottom: none;
}

/* Step-by-Step Guides */
.step-guide {
  margin: 2rem 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.step-number-circle {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.step-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Info Boxes */
.info-box {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border-left: 4px solid;
}

.info-box.note {
  background: #e3f2fd;
  border-color: #2196f3;
}

.info-box.warning {
  background: #fff3e0;
  border-color: #ff9800;
}

.info-box.tip {
  background: #e8f5e8;
  border-color: #4caf50;
}

.info-box h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-dark);
}

/* Code Blocks */
.code-block {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-dark);
  overflow-x: auto;
}

/* Download Buttons */
.doc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin: 1rem 0;
}

.doc-download-btn:hover {
  background: #4a2f24;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.doc-download-btn i {
  font-size: 1.1rem;
}

/* Schedule Tables */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule-table th {
  background: linear-gradient(135deg, var(--primary-color), #4a2f24);
  color: var(--white);
  padding: 1.2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.schedule-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.schedule-table .time-slot {
  background: var(--light-bg);
  font-weight: 600;
  color: var(--primary-color);
}

.schedule-table .subject {
  font-weight: 500;
}

.schedule-table .break {
  background: #fff3e0;
  color: #e65100;
  font-style: italic;
}

/* Rules and Regulations Styling */
.rule-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.rule-section h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rule-section h3 i {
  color: var(--accent-color);
}

.rule-list {
  list-style: none;
  padding: 0;
}

.rule-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rule-list li:last-child {
  border-bottom: none;
}

.rule-number {
  background: var(--primary-color);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Responsive Design for Documentation */
@media (max-width: 1024px) {
  .doc-container {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }

  .doc-sidebar {
    padding: 1.5rem;
  }

  .doc-main {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .doc-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .doc-sidebar {
    position: static;
    order: 2;
    margin-top: 2rem;
  }

  .doc-main {
    padding: 1.5rem;
  }

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

  .doc-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .schedule-table {
    font-size: 0.8rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.5rem;
  }
}

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

  .doc-main {
    padding: 1rem;
  }

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

  .doc-subtitle {
    font-size: 1rem;
  }
}
video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }
