/* ========================================
   MultiPrint - Pure CSS Styles
   ======================================== */

/* CSS Variables */
:root {
  --primary: #0073e6;
  --primary-hover: #0066cc;
  --background: #f8f9fa;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --whatsapp: #25d366;
  --whatsapp-hover: #128c7e;
  --hero-overlay: rgba(15, 23, 42, 0.85);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

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

address {
  font-style: normal;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-small {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-numbers {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.phone-numbers .icon {
  color: var(--primary);
}

.phone-numbers .divider {
  color: var(--border);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp .btn-text {
  display: none;
}

.btn-whatsapp.btn-large {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-whatsapp.btn-large .icon {
  width: 24px;
  height: 24px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/printer-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.9)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeIn 0.8s ease-out 0.5s both;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 4rem 0;
  background: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(0, 115, 230, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  stroke: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-info h3,
.footer-address h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-address h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-address h3 .icon-small {
  color: var(--primary);
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary);
}

.footer-phones .divider {
  display: none;
}

.footer-address address {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-address .landmark {
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .btn-whatsapp .btn-text {
    display: inline;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-phones {
    flex-direction: row;
  }
  
  .footer-phones .divider {
    display: inline;
    color: var(--border);
  }
}

/* Desktop (768px+) */
@media (min-width: 768px) {
  .header-content {
    height: 80px;
  }
  
  .logo img {
    height: 64px;
  }
  
  .phone-numbers {
    display: flex;
  }
  
  .header-right {
    gap: 1.5rem;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 6rem 1rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .services {
    padding: 6rem 0;
  }
  
  .section-header {
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  
  .footer-address h3 {
    justify-content: flex-start;
  }
  
  .footer-phones {
    justify-content: flex-start;
  }
  
  .footer {
    padding: 3rem 0;
  }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
