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

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: 'Arial', sans-serif;
  font-size: 48px;
  color: #5e2d91;
  font-weight: bold;
  letter-spacing: -2px;
}

.logo-sub {
  font-size: 16px;
  color: #999;
  letter-spacing: 2px;
  margin-top: -5px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
}

.main-nav a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  padding: 10px 20px;
  border-right: 1px solid #ddd;
  transition: color 0.3s;
}

.main-nav li:last-child a {
  border-right: none;
}

.main-nav a:hover {
  color: #5e2d91;
}

/* Page Content */
.page-content {
  padding: 0;
  background: #f8f8f8;
}

/* Hero Split Section (Purple + Image) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320px;
}

.hero-purple {
  background: linear-gradient(135deg, #5e2d91 0%, #7a4db3 100%);
  color: white;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-purple h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-lead {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-purple p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

/* Statement Banner (like OVERHEAD TO PROFIT) */
.statement-banner {
  background: #5e2d91;
  color: white;
  text-align: center;
  padding: 25px 30px;
}

.statement-banner h2 {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

/* Three Column Section */
.three-col-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.col-panel {
  position: relative;
}

.col-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.col-content {
  background: white;
  padding: 25px 20px;
  text-align: center;
  min-height: 120px;
}

.col-content i {
  font-size: 36px;
  color: #5e2d91;
  margin-bottom: 12px;
}

.col-content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
}

.col-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Image Background Section with Purple Overlay */
.image-bg-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 40px 30px;
}

.image-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 45, 145, 0.92), rgba(122, 77, 179, 0.92));
}

.overlay-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.overlay-content h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 15px;
}

.overlay-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.overlay-content strong {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 968px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .three-col-section {
    grid-template-columns: 1fr;
  }
  
  .hero-purple h1 {
    font-size: 38px;
  }
  
  .statement-banner h2 {
    font-size: 28px;
  }
}

.content-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-inner h1 {
  font-size: 48px;
  color: #5e2d91;
  margin-bottom: 40px;
  font-weight: 300;
  border-bottom: 4px solid #5e2d91;
  padding-bottom: 20px;
}

.content-inner h2 {
  font-size: 28px;
  color: #5e2d91;
  margin: 40px 0 20px;
  font-weight: 400;
}

.intro-text {
  background: linear-gradient(135deg, #5e2d91 0%, #7a4db3 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.intro-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: white;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.additional-content {
  padding: 20px 0;
}

.additional-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.benefits-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefits-list li {
  background: #f8f5fc;
  border-left: 4px solid #5e2d91;
  font-size: 16px;
  padding: 20px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefits-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(94, 45, 145, 0.2);
}

.services-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.services-list li {
  background: white;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  padding: 15px 15px 15px 50px;
  margin-bottom: 10px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.2s;
}

.services-list li:before {
  content: "✓";
  color: #5e2d91;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 20px;
}

.services-list li:hover {
  border-color: #5e2d91;
}

.contact-info {
  background: linear-gradient(135deg, #5e2d91 0%, #7a4db3 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

.contact-info strong {
  color: white;
  font-size: 18px;
}

.contact-info a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.contact-info a:hover {
  color: #f0f0f0;
}

.btn-contact-page {
  display: inline-block;
  background: #5e2d91;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background 0.3s, transform 0.2s;
  font-weight: bold;
}

.btn-contact-page:hover {
  background: #7a4db3;
  transform: translateY(-2px);
}

.content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-divider {
  border-top: 2px solid #e0e0e0;
  margin: 50px 0;
}

/* Footer */
.site-footer {
  background: #2c2c2c;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo .logo-text {
  font-size: 36px;
  color: #5e2d91;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-logo .logo-sub {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #888;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav ul {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .overhead-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .content-inner h1 {
    font-size: 32px;
  }

  .content-inner h2 {
    font-size: 24px;
  }
}

/* Homepage Specific Styles */

/* Warehouse Panels */
.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  margin: 0;
  gap: 0;
}

.warehouse-panel {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

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

.warehouse-panel:hover img {
  transform: scale(1.05);
}

.warehouse-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(94, 45, 145, 0.95);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.3s;
}

.warehouse-panel:hover .warehouse-overlay {
  background: rgba(94, 45, 145, 1);
}

.warehouse-icon {
  color: white;
  font-size: 40px;
  min-width: 50px;
}

.warehouse-title {
  color: white;
  font-size: 24px;
  font-weight: 300;
}

/* Overhead Band */
.overhead-band {
  background: #5e2d91;
  padding: 50px 40px;
}

.overhead-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.overhead-title {
  font-size: 32px;
  color: white;
  font-weight: 300;
  flex: 0 0 auto;
}

.overhead-image {
  flex: 1;
  text-align: center;
}

.overhead-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.btn-contact {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid white;
  transition: background 0.3s;
  flex: 0 0 auto;
}

.btn-contact:hover {
  background: rgba(255, 255, 255, 0.3);
}
