/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav a {
  margin-left: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #f0c040;
}

/* Banner Slider */
.banner-slider {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .main-nav a {
    margin: 0;
    font-size: 14px;
  }

  .logo img {
    height: 40px;
  }

  .banner-slider {
    height: 50vh;
  }
}

/* TG11 Product Highlight Section */
.feature-highlight {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  padding: 60px 30px;
}

.highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.highlight-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.highlight-image:hover img {
  transform: scale(1.05);
}

.highlight-text {
  flex: 1;
  line-height: 1.6;
}

.highlight-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.highlight-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.feature-details ul {
  padding-left: 20px;
  margin: 0;
}

.feature-details li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .highlight-content {
    flex-direction: column;
    text-align: center;
  }

  .highlight-text h2 {
    font-size: 24px;
  }
}

/* TG10 Section (Light Background) */
.feature-highlight-light {
  background-color: #fff;
  color: #000;
  padding: 60px 30px;
}

.feature-highlight-light .highlight-text h2 {
  color: #000;
}

.reverse-layout {
  flex-direction: row-reverse;
}

.feature-highlight-light .highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.feature-highlight-light .highlight-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-highlight-light .highlight-image:hover img {
  transform: scale(1.05);
}

.feature-highlight-light .highlight-text {
  flex: 1;
}

.feature-highlight-light .highlight-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-highlight-light .highlight-text p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .reverse-layout {
    flex-direction: column;
    text-align: center;
  }

  .feature-highlight-light .highlight-text h2 {
    font-size: 24px;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0a0f3c, #000000, #2b2b2b);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 24px;
  }
}

/* Support Section */
.feature-highlight-dark {
  background: linear-gradient(135deg, #0e0e0e, #2a2a2a);
  color: #fff;
  padding: 60px 30px;
}

.feature-highlight-dark .highlight-text h2 {
  color: #ffffff;
}

.feature-highlight-dark .highlight-text p {
  color: #dddddd;
  text-align: justify;
}

/* Footer */
.footer-section {
  background: url("images/bg2.jpg") no-repeat center center/cover;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  color: #fff;
}

.footer-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 15px;
  border-radius: 12px;
  display: inline-block;
  max-width: 900px;
  margin: 0 auto;
}

.footer-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 8px;
  margin-top: 1px;
}

.footer-links {
  margin-top: 1px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-links span {
  color: #aaa;
  font-weight: lighter;
}

@media (max-width: 600px) {
  .footer-section h2 {
    font-size: 18px;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-links {
    font-size: 12px;
    gap: 5px;
  }
}

/* About Us Section */
.about-section {
  background: url("images/AboutUs.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  color: #fff;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
}

.about-overlay h1 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-overlay p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #dddddd;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-overlay {
    padding: 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 14px;
  }
}

/* Static Pages */
.static-page {
  padding: 100px 30px;
  min-height: 100vh;
  color: #fff;
  text-align: left;
  position: relative;
  background-size: cover;
  background-position: center;
}

.static-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px 30px;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #ffffff;
  text-align: justify;
  letter-spacing: 0.3px;
}

.static-overlay h1 {
  font-size: 38px;
  margin-bottom: 35px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.static-overlay p {
  margin-bottom: 24px;
}

.shipping-policy-bg {
  background-image: url("images/ship.jpg");
}

.static-bg {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.products-section {
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}

.products-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  width: calc(25% - 30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

.product-card p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

.product-detail {
  background: #111;
  color: #fff;
  padding: 80px 30px;
}

.detail-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.product-image {
  flex: 1;
  max-width: 500px;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-image .variant {
  border: 2px solid #444;
}

.product-info {
  flex: 2;
}

.product-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.product-info .subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ccc;
}

.features-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

.features-list li {
  margin-bottom: 12px;
}

.product-features-grid {
  background-color: #000;
  padding: 80px 30px;
}

.product-features-grid .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f0c040;
  color: #000;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.variant-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.variant-buttons button {
  background-color: #222;
  color: #fff;
  border: 1px solid #555;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.variant-buttons button:hover {
  background-color: #f0c040;
  color: #000;
}
