/* Tshirtprint2u How-to-order Page Stylesheet */

/* Main Styles for Corporate Process Page */

/* CSS Variables for Brand Colors */

:root {
  --primary: #0033a0;
  --secondary: #ff6b00;
  --accent: #f4c300;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 10px;
}

/* Reset and Base Styles */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Button Styles */

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button-light {
  display: inline-block;
  background-color: white;
  color: var(--primary);
  padding: 15px 40px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta-button-light:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */

header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--primary);
  font-size: 28px;
  animation: rotateIn 1s ease;
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--secondary);
}

/* Navigation */

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 5px 0;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */

.hero {
  background: linear-gradient(rgba(0, 51, 160, 0.85), rgba(0, 51, 160, 0.9)), url('../../assets/img/banner-tshirtprint2u.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
}

.hero h1 {
  animation: fadeInUp 1s ease 0.3s both;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero .cta-button-light {
  animation: fadeInUp 1s ease 0.9s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Intro */

.process-intro {
  padding: 80px 0;
  text-align: center;
  background-color: white;
}

.process-intro h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.process-intro h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
}

.process-intro p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

/* Process Flow Visualization */

.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 30px;
  max-width: 900px;
  flex-wrap: wrap;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  min-width: 200px;
  padding: 10px;
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 30px;
  width: 50%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0.3;
}

.flow-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 51, 160, 0.2);
  transition: var(--transition);
}

.flow-item:hover .flow-circle {
  transform: scale(1.1);
  background-color: var(--secondary);
}

.flow-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.flow-desc {
  font-size: 0.9rem;
  color: #666;
}

/* Process Steps */

.process-steps {
  padding: 80px 0;
  background-color: var(--light);
  position: relative;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  width: 100%;
  max-width: 270px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  background-color: var(--primary);
  color: white;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 5px solid white;
  box-shadow: 0 0 0 3px var(--primary);
  transition: var(--transition);
}

.step-card:hover .step-number {
  background-color: var(--secondary);
  box-shadow: 0 0 0 3px var(--secondary);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  height: 60px;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.step-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card p {
  margin-bottom: 20px;
  color: #555;
}

.step-details {
  list-style-type: none;
  margin-top: 15px;
  text-align: left;
}

.step-details li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

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

/* Why Choose Us */

.why-choose {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Services Section */

.services {
  padding: 80px 0;
  background-color: white;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 5px solid var(--primary);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  border-top-color: var(--secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-item:hover .service-icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-item h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* CTA Section */

.cta-section {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  position: relative;
}

/* Footer */

footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.footer-column:hover h3::after {
  width: 80px;
}

.footer-column ul {
  list-style-type: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  transition: var(--transition);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

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

.contact-info li i {
  color: var(--secondary);
  margin-right: 10px;
  margin-top: 5px;
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 992px) {
  .flow-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .process-flow {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .flow-item {
    flex: 0 0 calc(50% - 30px);
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

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

@media (max-width: 768px) {
  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .step-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .flow-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .services-grid, .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .logo {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .process-intro, .process-steps, .services, .why-choose, .cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .services-grid, .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cta-button-light {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

