/* VA Global Main Stylesheet */

:root {
  --primary-color: #c79c5b; /* Golden */
  --secondary-color: #27345d; /* Dark Blue */
  --dark-color: #111111;
  --text-color: #f8f9fa;
  --golden-text: #c79c5b;
  --golden-light: #dfbd85;
  --golden-dark: #a77c3b;
  --accent-color: #28ad6e; /* Green Accent */
  --danger-color: #dc3545;
  --success-color: #28a745;
  --dark-overlay: rgba(17, 17, 17, 0.8);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-color);
  color: var(--text-color);
  line-height: 1.6;
  background-image: url('../images/background.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--golden-text);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--golden-text);
}

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

.fw-bold {
  font-weight: 700;
}

/* Header */
.header {
  background-color: rgba(17, 17, 17, 0.9);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--golden-text);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--golden-text);
}

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

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 5px;
}

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

.active {
  color: var(--golden-text) !important;
  border-bottom: 2px solid var(--golden-text);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--golden-text);
  margin: 3px 0;
  transition: 0.4s;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-overlay);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Page Banner */
.page-banner {
  background-color: rgba(17, 17, 17, 0.7);
  padding: 60px 0;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--golden-text);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

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

/* Category Grid & Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

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

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

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  transform: translateY(70px);
  transition: transform 0.3s;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.category-description {
  color: #ccc;
  margin-bottom: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover .category-description {
  opacity: 1;
}

.product-specs {
  list-style: none;
  margin-bottom: 20px;
}

.product-specs li {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #ccc;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Product Listing Section */
.product-listing-section {
  padding-top: 100px;
  margin-top: -60px;
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 0;
}

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

.btn-primary:hover {
  background-color: var(--golden-light);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: scale(1.05);
}

.add-to-cart-btn, .enquiry-btn, .bulk-order-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn {
  background-color: var(--golden-text);
  color: var(--dark-color);
}

.add-to-cart-btn:hover {
  background-color: var(--golden-light);
  transform: scale(1.05);
}

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

.enquiry-btn:hover {
  background-color: #334879;
  transform: scale(1.05);
}

.bulk-order-btn {
  background-color: var(--accent-color);
  color: var(--text-color);
}

.bulk-order-btn:hover {
  background-color: #30c47f;
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

/* Cards */
.card {
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
  border: 1px solid rgba(199, 156, 91, 0.3);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--golden-text);
}

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

.card-body {
  padding: 20px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card-text {
  margin-bottom: 20px;
  color: #ccc;
}

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

.col {
  padding: 0 15px;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background-color: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(199, 156, 91, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--golden-text);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1rem;
  color: var(--golden-text);
  margin-bottom: 15px;
  font-weight: 700;
}

.product-description {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #ccc;
}

.product-actions {
  display: flex;
  justify-content: space-between;
}

/* Certifications Section */
.certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.certification-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(199, 156, 91, 0.3);
  transition: transform 0.3s;
}

.certification-item:hover {
  transform: scale(1.05);
  border-color: var(--golden-text);
}

.certification-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.certification-title {
  font-size: 1rem;
  color: var(--golden-text);
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(17, 17, 17, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(199, 156, 91, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: rgba(17, 17, 17, 0.6);
  color: var(--text-color);
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--golden-text);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: rgba(17, 17, 17, 0.9);
  padding: 60px 0 30px;
  border-top: 1px solid var(--golden-text);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-title {
  position: relative;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--golden-text);
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-info {
  margin-bottom: 20px;
}

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

.contact-info i {
  margin-right: 10px;
  color: var(--golden-text);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--golden-text);
  color: var(--dark-color);
}

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

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  font-size: 30px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher select {
  background-color: transparent;
  border: 1px solid var(--golden-text);
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.language-switcher select:focus {
  outline: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: var(--dark-color);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid var(--golden-text);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: modalopen 0.5s;
}

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

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--golden-text);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(199, 156, 91, 0.3);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  height: 150px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Blog Section */
.blog-card {
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  border: 1px solid rgba(199, 156, 91, 0.3);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--golden-text);
}

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

.blog-content {
  padding: 20px;
}

.blog-date {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-title {
  margin-bottom: 15px;
}

.blog-excerpt {
  color: #ccc;
  margin-bottom: 20px;
}

/* E-commerce Features */
.cart-icon {
  position: relative;
  margin-left: 25px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--golden-text);
  color: var(--dark-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.add-to-cart-btn, .enquiry-btn, .bulk-order-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn {
  background-color: var(--golden-text);
  color: var(--dark-color);
}

.add-to-cart-btn:hover {
  background-color: var(--golden-light);
  transform: scale(1.05);
}

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

.enquiry-btn:hover {
  background-color: #334879;
  transform: scale(1.05);
}

.bulk-order-btn {
  background-color: var(--accent-color);
  color: var(--text-color);
}

.bulk-order-btn:hover {
  background-color: #30c47f;
  transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
  background-color: rgba(17, 17, 17, 0.7);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(199, 156, 91, 0.3);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 50px;
  color: var(--golden-text);
  opacity: 0.5;
}

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

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--golden-text);
}

.author-info h5 {
  margin-bottom: 5px;
}

.author-info p {
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(17, 17, 17, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

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

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

  .menu-toggle {
    display: flex;
  }

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

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

  .col-md-6 {
    width: 50%;
  }

  .col-md-12 {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

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

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

  .section {
    padding: 60px 0;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .footer-column {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .certification-item {
    min-width: 150px;
  }

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

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

@media (max-width: 576px) {
  .logo-text {
    display: none;
  }

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

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

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .col-xs-12 {
    width: 100%;
  }

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

  .certification-item {
    min-width: 120px;
    padding: 10px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    font-size: 24px;
  }

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

  .category-card {
    height: 250px;
  }
}
