/* style.css - Tshirtprint2u Services Page */

/* Brand Color Variables */

:root {
  --primary: #0033a0;
  --secondary: #ff6b00;
  --accent: #f4c300;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --gray-light: #e9ecef;
  --gray-medium: #6c757d;
}

/* Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

section {
  padding: 80px 0;
}

/* Hero Section */

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

.hero h1 {
  color: white;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Overview */

.services-overview {
  background-color: white;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.section-intro h2 {
  margin-bottom: 1.5rem;
}

.section-intro h2:after {
  left: 50%;
  transform: translateX(-50%);
}

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

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary);
}

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

.service-icon {
  background-color: var(--primary);
  color: white;
  font-size: 2.5rem;
  padding: 25px;
  text-align: center;
}

.service-content {
  padding: 25px;
}

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

/* Customization Methods - CARD GRID LAYOUT */

.customization-methods {
  background-color: var(--light);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

.method-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.method-card-header {
  display: flex;
  align-items: center;
  padding: 25px 25px 15px;
  background-color: var(--light);
  border-bottom: 1px solid var(--gray-light);
}

.method-card-icon {
  background-color: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.method-card-title h3 {
  margin-bottom: 5px;
  color: var(--primary);
}

.method-card-title p {
  color: var(--gray-medium);
  font-size: 1rem;
  margin-bottom: 0;
}

.method-card-body {
  padding: 25px;
  flex-grow: 1;
}

.method-card-description {
  margin-bottom: 25px;
}

.method-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.spec-item {
  background-color: var(--light);
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid var(--secondary);
}

.spec-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.spec-value {
  font-size: 1rem;
}

.method-card-visual {
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.method-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.method-card:hover .method-card-visual img {
  transform: scale(1.05);
}

.best-for-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.best-for-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

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

/* Comparison Table Section */

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

.comparison-table-container {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table thead {
  background-color: var(--primary);
  color: white;
}

.comparison-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
  border-top-left-radius: 8px;
}

.comparison-table th:last-child {
  border-top-right-radius: 8px;
  border-right: none;
}

.comparison-table th.method-header {
  text-align: center;
  font-size: 1.1rem;
}

.method-icon-small {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
  transition: background-color 0.3s;
}

.comparison-table tbody tr:hover {
  background-color: rgba(0, 51, 160, 0.03);
}

.comparison-table td {
  padding: 18px 15px;
  border-right: 1px solid var(--gray-light);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(0, 51, 160, 0.05);
}

.comparison-table td:last-child {
  border-right: none;
}

.rating {
  display: flex;
  align-items: center;
}

.rating-stars {
  color: var(--accent);
  margin-right: 8px;
}

.rating-text {
  font-weight: 600;
  color: var(--primary);
}

.comparison-highlight {
  background-color: rgba(255, 107, 0, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--secondary);
}

.comparison-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--gray-medium);
  padding: 20px;
  background-color: var(--light);
  border-radius: 8px;
}

/* Decision Guide */

.decision-guide {
  background-color: var(--light);
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.decision-guide h3 {
  text-align: center;
  margin-bottom: 30px;
}

.decision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.decision-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.decision-card h4 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.decision-icon {
  margin-right: 10px;
  color: var(--primary);
}

/* Product Categories */

.product-categories {
  background-color: white;
}

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

.category-item {
  background-color: var(--light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.category-item:hover {
  transform: translateY(-5px);
  border-left-color: var(--secondary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.seo-explore {
  background-color: var(--light);
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

.seo-explore h3 {
  text-align: center;
  margin-bottom: 30px;
}

.seo-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.seo-item {
  margin-bottom: 15px;
}

.seo-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.seo-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Process Section */

.process {
  background-color: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border-top: 4px solid var(--primary);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* CTA Section */

.cta {
  background: linear-gradient(to right, var(--primary), #0040c0);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  color: white;
}

.cta h2:after {
  background-color: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Footer */

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 30px;
}

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

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Animations */

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

/* Responsive Styles */

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

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

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

@media (max-width: 992px) {
  .method-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .decision-cards {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-links li {
    margin: 10px 0;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

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

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

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .method-card-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .method-card-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .comparison-section, .decision-guide {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .decision-guide {
    padding: 25px;
  }
}

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

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

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

@media (max-width: 576px) {
  .btn {
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .contact-info {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .method-card-body {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .seo-explore {
    padding: 25px;
  }
}

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

@media (max-width: 576px) {
  .comparison-table th, .comparison-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}

