/* Tshirtprint2u - Samples Policy Page
Custom Styles for T-Shirt Printing and Uniform Supplier */

:root {
  --primary: #0033a0;
  --secondary: #ff6b00;
  --accent: #f4c300;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --malaysia-red: #cc0001;
  --malaysia-blue: #010066;
  --malaysia-yellow: #ffcc00;
}

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

/* Header & Navigation */

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
}

.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
  font-weight: 600;
}

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

.btn-primary:hover {
  background-color: #00257a;
  border-color: #00257a;
}

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

.btn-secondary:hover {
  background-color: #e05a00;
  border-color: #e05a00;
}

/* Hero Section */

.hero-section {
  background: linear-gradient(rgba(0, 33, 140, 0.9), rgba(0, 33, 140, 0.8)), url('../../assets/img/main/banner-tshirtprint2u.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  margin-bottom: 3rem;
}

.hero-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Content Styling */

.page-title {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.section-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.highlight-box {
  border-left: 4px solid var(--secondary);
  background-color: rgba(255, 107, 0, 0.05);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.policy-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: white;
}

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

.policy-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.important-note {
  background-color: rgba(244, 195, 0, 0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.malaysia-flag {
  height: 4px;
  background: linear-gradient(to right, var(--malaysia-blue) 25%, var(--malaysia-red) 25%, var(--malaysia-red) 50%, white 50%, white 75%, var(--malaysia-yellow) 75%);
  margin-bottom: 2rem;
}

/* Process Steps */

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* CTA Section */

.cta-section {
  background: linear-gradient(135deg, rgba(0, 51, 160, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  border: 1px solid rgba(0, 51, 160, 0.1);
}

.cta-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  margin: 0.5rem;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: white;
}

.email-btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  margin: 0.5rem;
}

.email-btn:hover {
  background-color: #00257a;
  border-color: #00257a;
  color: white;
}

.response-time {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px dashed #25D366;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 2rem;
  display: inline-block;
}

/* Sample Requirements */

.requirements-list {
  list-style-type: none;
  padding-left: 0;
}

.requirements-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.requirements-list li:before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Footer */

.footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-heading {
  color: var(--light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  border-top: 1px solid #495057;
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .policy-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .process-step {
    padding-left: 2.5rem;
  }
}

@media (max-width: 576px) {
  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
}

