/* Graphic Design Services Page Styles */

/* Hero Section */
.design-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-content {
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 164, 75, 0.3);
  font-size: 0.9rem;
}

.feature-badge i {
  color: #d4a44b;
}

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

.cta-primary,
.cta-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-primary {
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
  color: #1a1a2e;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 164, 75, 0.3);
}

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

.cta-secondary:hover {
  background: rgba(212, 164, 75, 0.1);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.design-showcase {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.design-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 300px;
}

.design-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 164, 75, 0.3);
  transition: all 0.3s ease;
}

.design-card:hover {
  background: rgba(212, 164, 75, 0.2);
  transform: translateY(-5px);
}

.design-card i {
  font-size: 2rem;
  color: #d4a44b;
  margin-bottom: 10px;
  display: block;
}

.design-card span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Services Overview */
.services-overview {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #d4a44b;
  text-align: center;
  position: relative;
}

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

.service-card.featured {
  border-top: 4px solid #d4a44b;
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4a44b;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a44b;
  font-weight: bold;
}

.service-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4a44b;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: 60px;
  background: #d4a44b;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: white;
}

.portfolio-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  border: 2px solid #d4a44b;
  background: transparent;
  color: #d4a44b;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #d4a44b;
  color: white;
}

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

.portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.logo-sample {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.brochure-sample {
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.social-sample {
  background: linear-gradient(135deg, #d4a44b, #f4d03f);
}

.packaging-sample {
  background: linear-gradient(135deg, #5a6c7d, #6c7b8a);
}

.placeholder-image i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h4 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 5px;
  font-weight: 600;
}

.portfolio-info p {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Portfolio Filter Animation */
.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .design-hero {
    padding-top: 150px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .design-elements {
    grid-template-columns: 1fr 1fr;
    width: 250px;
  }

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

  .service-card.featured {
    transform: none;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .process-step::after {
    display: none;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .category-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

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

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

  .service-card {
    padding: 25px 20px;
  }

  .design-elements {
    grid-template-columns: 1fr;
    width: 200px;
  }

  .feature-badge {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

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