/* ================================
   GLOBAL STYLES
   ================================ */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ================================
   NAVIGATION
   ================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  text-decoration: none;
  display: flex;
  /* Centers image if we need alignment */
  align-items: center;
}

.logo img {
  height: 50px;
  /* Adjust height to fit navbar */
  width: auto;
  /* Maintain aspect ratio */
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6b35;
}

.contact-btn {
  padding: 0.5rem 1.5rem;
  background: white;
  border: 2px solid #afb5ba;
  color: #1e3a5f;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #1e3a5f;
  color: white;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  background: linear-gradient(rgba(8, 2, 60, 0.6), rgba(3, 12, 62, 0.6)),
    url("header-img.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.hero h1 {
  font-family: "Playfair Display SC", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ================================
   BUTTONS - Primary Style
   ================================ */
.cta-btn,
.about-btn,
.cta-quote-btn,
.submit-btn {
  padding: 1rem 2.5rem;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn {
  justify-self: start;
  padding: 1rem 2rem;
}

.cta-btn {
  padding: 1rem 3rem;
}

.cta-btn:hover,
.about-btn:hover,
.cta-quote-btn:hover,
.submit-btn:hover {
  background: #e55a2b;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.about p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("assets/P1-1.png");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* ================================
   PRODUCTS SECTION
   ================================ */
.products {
  padding: 5rem 5%;
  background: #1e3a5f;
  color: white;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.products-subtitle {
  opacity: 0.8;
  margin-bottom: 3rem;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: left;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  color: #333;
  transition: transform 0.3s;
  width: 375px;
}

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

.product-card h3 {
  text-align: left;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-btn {
  margin-top: 8px;
  background-color: #0a3d62;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-btn:hover {
  background-color: #07405e;
}

.manufacturers-list {
  text-align: left;
  list-style-type: none;
  /* Or disc if preferred, but usually cleaner without for card */
  /* padding-left: 1rem; */
  /* Indent slightly */
  margin-top: 1rem;
}

.manufacturers-list li {
  /* margin-bottom: 0.5rem; */
  font-size: 0.9rem;
  /* Slightly smaller text for list */
}

/* Brochure Download Button */
.brochure-download-container {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.brochure-download-container a {
  text-decoration: none;
  display: inline-block;
}

.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brochure-btn:hover {
  background: white;
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.brochure-btn:active {
  transform: translateY(0);
}

.download-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */
.why-choose {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image {
  width: 100%;
  height: 400px;
  background: url("assets/P2-1.png");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.why-content h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.why-content>p {
  color: #666;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-content h3 {
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  font-size: 0.9rem;
}

/* ================================
   CALL TO ACTION SECTION
   ================================ */
.cta-section {
  background: #1e3a5f;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.8;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
  padding: 5rem 5%;
  background: #f5f5f5;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: #fde9e2;
  border-radius: 50%;
}

.testimonial-info h4 {
  color: #1e3a5f;
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  color: #999;
  font-size: 0.85rem;
}

.quote-icon {
  margin-left: auto;
  font-size: 2rem;
  color: #ffd700;
}

.testimonial-text {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.stars {
  color: #ffd700;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
  padding: 5rem 5%;
  background: #1e3a5f;
  color: white;
}

.contact h2 {
  font-size: 2.5rem;
  margin: 3rem 0 0.5rem;
}

.contact-subtitle {
  opacity: 0.8;
  margin-bottom: 3rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
}

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

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

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
}

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

/* ================================
   FOOTER
   ================================ */
.footer-simple {
  background: #0a1929;
  padding: 5rem 5%;
}

.footer-simple-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-simple-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3d76c1;
}

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

.footer-nav a {
  color: #a3a2a2;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ff6b35;
}

.footer-simple-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #5e6062;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-simple-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.footer-simple-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-simple-links a {
  color: #666;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-simple-links a:hover {
  color: #ff6b35;
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {

  /* Navigation */
  .nav-links {
    display: none;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
  }

  /* Grid Layouts - Convert to Single Column */
  .about,
  .why-choose,
  .contact-container,
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  /* CTA Section */
  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-quote-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Footer */
  .footer-simple-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-simple-bottom {
    flex-direction: column;
    text-align: center;
  }
}