* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  color: #2c3e50;
  line-height: 1.6;
}

header {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  box-shadow: 0 4px 20px rgba(229,57,53,0.08);
  border-bottom: 4px solid #E53935;
  position: relative;
}

.logo {
  width: 350px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 6px 20px rgba(229,57,53,0.12));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

h1 {
  color: #E53935;
  margin: 0.5rem 0 0.3rem 0;
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.slogan {
  color: #5a6c7d;
  font-size: 1.2rem;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-style: italic;
  font-weight: 400;
}

main {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(229,57,53,0.06);
  margin-bottom: 3rem;
  padding: 3rem 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(229,57,53,0.05);
}

section:hover {
  box-shadow: 0 8px 40px rgba(229,57,53,0.12);
  transform: translateY(-2px);
}

section h2 {
  color: #E53935;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E53935, #FF4B2B);
  border-radius: 2px;
}

.products ol {
  padding-left: 1.5rem;
}

.products li {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #4a5568;
}

.contact-details {
  background: linear-gradient(135deg, #fbe9e7 0%, #fff3e0 100%);
  border-radius: 12px;
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(229,57,53,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid #E53935;
}

.contact-details a {
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.contact-details a:hover {
  color: #b71c1c;
  text-decoration: none;
  transform: translateX(5px);
}

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

.contact input, .contact textarea {
  padding: 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact input:focus, .contact textarea:focus {
  border: 2px solid #E53935;
  outline: none;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
  background: #fff;
}

.contact button {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(229,57,53,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact button:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #E53935 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.3);
}

#formMessage {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid;
}

#formMessage.success {
  color: #155724;
  background: rgba(21, 87, 36, 0.1);
  border-left-color: #155724;
}

#formMessage.error {
  color: #721c24;
  background: rgba(114, 28, 36, 0.1);
  border-left-color: #721c24;
}

footer {
  background: #fff;
  color: #4a5568;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 2px solid #fbe9e7;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(229,57,53,0.06);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #E53935;
}

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

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #E53935;
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact p {
  margin: 0;
  font-size: 0.9rem;
  color: #718096;
}

.footer-contact a {
  color: #718096;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #E53935;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #fbe9e7;
  color: #718096;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-contact {
    order: -1;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.product-tile {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(229,57,53,0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(229,57,53,0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.product-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #E53935, #FF4B2B, #E53935);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.product-tile:hover::before {
  transform: scaleX(1);
}

.product-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(229,57,53,0.18);
  border-color: rgba(229,57,53,0.2);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 0;
  transition: all 0.4s ease;
  border: 2px solid rgba(229,57,53,0.15);
  box-shadow: 0 6px 20px rgba(229,57,53,0.12);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.product-image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(229,57,53,0.2);
  border-color: rgba(229,57,53,0.25);
}

/* Specific styling for SVG images (placeholder images) */
.product-image[src*=".svg"] {
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(229,57,53,0.15);
}

.product-image[src*=".svg"]:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fbe9e7 100%);
  border-color: rgba(229,57,53,0.25);
}

/* Specific styling for Steel Strapping and PET Packaging images to reduce zoom */
.product-image[src*="metal-strapping-machine.jpg"],
.product-image[src*="Plastic strapping.png"] {
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(229,57,53,0.15);
}

.product-image[src*="metal-strapping-machine.jpg"]:hover,
.product-image[src*="Plastic strapping.png"]:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fbe9e7 100%);
  border-color: rgba(229,57,53,0.25);
}

/* PPE Image Specific Styling */
.product-tile:has(img[alt="PPE Equipment"]) .product-image {
  object-fit: cover;
  height: 380px;
  width: 100%;
  padding: 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(229,57,53,0.15);
  border: 2px solid rgba(229,57,53,0.1);
}

.product-tile:has(img[alt="PPE Equipment"]) .product-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(229,57,53,0.2);
}

.product-tile:has(img[alt="PPE Equipment"]) {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.product-tile:has(img[alt="PPE Equipment"]):hover {
  transform: none;
  box-shadow: none;
}

.product-tile h3 {
  color: #E53935;
  font-size: 1.5rem;
  margin: 0 0 1.2rem 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.product-tile p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  font-weight: 400;
  box-sizing: border-box;
  width: 100%;
}

.product-tile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.product-tile li {
  padding: 0.5rem 0;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.product-tile li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E53935;
  font-weight: bold;
  font-size: 1.1rem;
}

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

  .product-tile {
    padding: 2rem;
  }

  .product-image {
    height: 260px;
  }
  
  .product-image[src*=".svg"] {
    padding: 1.5rem;
  }
  
  .product-image[src*="metal-strapping-machine.jpg"],
  .product-image[src*="Plastic strapping.png"] {
    padding: 1.5rem;
  }

  .product-tile h3 {
    font-size: 1.4rem;
  }

  .product-tile p {
    font-size: 1.05rem;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-item {
  background: linear-gradient(135deg, #fbe9e7 0%, #fff3e0 100%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(229,57,53,0.1);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.15);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.highlight-item h4 {
  color: #E53935;
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.highlight-item p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

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

  .highlight-item {
    padding: 1.2rem;
  }

  .about-main p {
    font-size: 1rem;
    text-align: left;
  }
}

.main-nav {
  background: #fff;
  padding: 0 2rem;
  box-shadow: 0 2px 12px rgba(229,57,53,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(229,57,53,0.1);
}

.main-nav a {
  display: inline-block;
  padding: 1.2rem 1.5rem;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}

.main-nav a:hover, .main-nav a.active {
  color: #E53935;
  background: rgba(229,57,53,0.05);
  transform: translateY(-2px);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '▼';
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 8px 32px rgba(229,57,53,0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(229,57,53,0.1);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: #4a5568;
  text-decoration: none;
  border-bottom: 1px solid rgba(229,57,53,0.05);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(229,57,53,0.08);
  color: #E53935;
  padding-left: 2rem;
}

.services-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.services-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #E53935;
  font-weight: 600;
}

.services-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: 4rem;
}

.service-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(229,57,53,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-header h3 {
  font-size: 2rem;
  color: #E53935;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-header p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-item {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(229,57,53,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E53935, #FF4B2B);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229,57,53,0.15);
  background: linear-gradient(135deg, #fff 0%, #fbe9e7 100%);
}

.service-item h4 {
  color: #E53935;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

.service-item h4::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #E53935;
  border-radius: 1px;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  padding: 0.6rem 0;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
}

.service-item li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E53935;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .main-nav {
    padding: 0 1rem;
  }

  .main-nav a {
    padding: 1rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown-menu {
    min-width: 200px;
    left: -50px;
  }

  .dropdown:hover .dropdown-menu {
    left: 0;
  }

  .dropdown-menu a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    padding-left: 1.5rem;
  }

  .services-hero h2 {
    font-size: 2rem;
  }

  .services-hero p {
    font-size: 1.1rem;
  }

  .service-header h3 {
    font-size: 1.8rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item {
    padding: 1.5rem;
  }

  .service-item h4 {
    font-size: 1.2rem;
  }
}

html {
  scroll-behavior: smooth;
}

.products-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.products-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #E53935;
  font-weight: 600;
}

.products-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .products-hero h2 {
    font-size: 2rem;
  }

  .products-hero p {
    font-size: 1.1rem;
  }
}

.read-more-btn {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(229,57,53,0.25);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  align-self: flex-start;
  max-width: 100%;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #E53935 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(229,57,53,0.35);
}

.read-more-btn.expanded {
  background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
}

.read-more-btn.expanded:hover {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.product-summary {
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  flex-grow: 1;
  margin-bottom: 1.8rem;
  box-sizing: border-box;
  width: 100%;
}

.product-details {
  max-height: none;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
}

.product-details p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #4a5568;
}

.product-details ul {
  margin-bottom: 1.5rem;
}

.product-details li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.product-details li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E53935;
  font-weight: bold;
  font-size: 1.2rem;
}

.ppe-category {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(229,57,53,0.1);
}

.ppe-category h5 {
  color: #E53935;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ppe-category p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.product-details h4 {
  color: #E53935;
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 0.5rem;
}

.product-details h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #E53935;
  border-radius: 1px;
}

.ppe-description {
  background: linear-gradient(135deg, #fbe9e7 0%, #fff3e0 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid rgba(229,57,53,0.1);
  text-align: center;
}

.ppe-description h3 {
  color: #E53935;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ppe-description p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #E53935;
  font-weight: 600;
}

.contact-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 3rem;
}

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

.contact-card {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(229,57,53,0.1);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229,57,53,0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #E53935;
}

.contact-card h3 {
  color: #E53935;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-link {
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #b71c1c;
  text-decoration: underline;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-options .contact-link {
  margin-top: 0;
  padding: 0.8rem 1.2rem;
  background: rgba(229, 57, 53, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(229, 57, 53, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-options .contact-link:hover {
  background: rgba(229, 57, 53, 0.15);
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
  text-decoration: none;
}

.whatsapp-link {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
  color: #25D366 !important;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
  color: #128C7E !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
}

.contact-note {
  background: linear-gradient(135deg, #fbe9e7 0%, #fff3e0 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(229,57,53,0.1);
  margin-bottom: 3rem;
}

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

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

.form-group label {
  margin-bottom: 0.5rem;
  color: #4a5568;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 2px solid #E53935;
  outline: none;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
  background: #fff;
}

.submit-btn {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(229,57,53,0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #E53935 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.3);
}

.why-choose {
  margin-top: 4rem;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #E53935;
  font-weight: 600;
}

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

.feature-item {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(229,57,53,0.1);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229,57,53,0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #E53935;
}

.feature-item h4 {
  color: #E53935;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.feature-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-hero h2 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

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

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

  .contact-card {
    padding: 1.5rem;
  }

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

  .feature-item {
    padding: 1.5rem;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }
} 

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 4rem 0;
  margin-bottom: 4rem;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23E53935" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #E53935;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,57,53,0.3);
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #E53935 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: #E53935;
  border: 2px solid #E53935;
}

.hero-btn.secondary:hover {
  background: #E53935;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.3);
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(229,57,53,0.2);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Services Preview Section */
.services-preview {
  padding: 4rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #E53935;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-preview-card {
  background: linear-gradient(135deg, #f8fafc 0%, #fbe9e7 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(229,57,53,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E53935, #FF4B2B);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-preview-card:hover::before {
  transform: scaleX(1);
}

.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(229,57,53,0.15);
  background: linear-gradient(135deg, #fff 0%, #fbe9e7 100%);
}

.service-preview-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-preview-card h3 {
  color: #E53935;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.service-preview-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-preview-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-preview-card li {
  padding: 0.5rem 0;
  color: #4a5568;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-preview-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E53935;
  font-weight: bold;
  font-size: 1rem;
}

.service-link {
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  color: #b71c1c;
  transform: translateX(5px);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #fbe9e7 0%, #fff3e0 100%);
  padding: 4rem 0;
  margin: 4rem 0;
}

.about-section .about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-section h2 {
  color: #E53935;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: left;
}

.about-section .about-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(229,57,53,0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(229,57,53,0.1);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-text h4 {
  color: #E53935;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.feature-text p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(229,57,53,0.1);
  box-shadow: 0 8px 24px rgba(229,57,53,0.1);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229,57,53,0.15);
  background: rgba(255, 255, 255, 0.95);
}

.about-image img {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(229,57,53,0.2));
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

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

.image-overlay h3 {
  color: #E53935;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.image-overlay p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-section h2 {
    text-align: center;
    font-size: 2rem;
  }

  .about-section .about-main p {
    text-align: left;
    font-size: 1rem;
  }

  .about-features {
    margin-top: 2rem;
  }

  .feature {
    padding: 1.2rem;
  }

  .about-image {
    padding: 1.5rem;
  }

  .about-image img {
    width: 150px;
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  padding: 4rem 0;
  color: #fff;
  margin: 4rem 0;
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  margin: 4rem 0;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.cta-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #E53935 0%, #FF4B2B 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,57,53,0.3);
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, #b71c1c 0%, #E53935 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,57,53,0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-btn.tertiary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.tertiary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-preview-card {
    padding: 2rem;
  }

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

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

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

  .section-header h2 {
    font-size: 2rem;
  }

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

  .cta-section h2 {
    font-size: 2rem;
  }
} 