:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #e67e22;
  --text-color: #333;
  --light-text: #f4f4f4;
  --bg-color: #ffffff;
  --section-bg: #f8f9fa;
  --footer-bg: #1a1a1a;
  --header-height: 80px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header & Nav */
header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

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

/* Hero Section */
.hero {
  height: 80vh;
  margin-top: var(--header-height);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/20150714_081153.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 15px auto 0;
}

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

.about-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-text p {
  margin-bottom: 20px;
}

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

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid #eee;
}

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

.product-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Contact & Map */
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-container {
  height: 400px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Large Logo Section */
.large-logo-section {
  background: white;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.large-logo {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 35px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent-color);
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-img-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 40px;
}

.modal-details h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.modal-desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.modal-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-list {
  list-style: none;
}

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

.modal-list li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.modal-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.modal-table-container h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #f8f9fa;
  color: var(--primary-color);
}

@media (min-width: 992px) {
  .modal-body {
    flex-direction: row;
  }

  .modal-img-container {
    width: 40%;
    height: auto;
    min-height: 500px;
  }

  .modal-details {
    width: 60%;
  }
}

@media (max-width: 768px) {

  .modal-grid,
  .modal-tables {
    grid-template-columns: 1fr;
  }

  .modal-details h2 {
    font-size: 1.8rem;
  }
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--light-text);
  padding: 40px 0;
  text-align: center;
}

.footer-content p {
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .nav-links {
    display: none;
  }
}