/* AKP Sublimations Design System - styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3ECE3;
  --bg-card: #FFFFFF;
  --text-main: #1E2022;
  --text-muted: #5C5E62;
  --text-light: #8E9094;
  --accent-primary: #E5890A; /* Saffron/Amber */
  --accent-secondary: #D85C27; /* Terracotta */
  --accent-light: #FBEFDF;
  --border-color: #E2D9CE;
  --border-focus: #1E2022;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(30, 32, 34, 0.04);
  --shadow-md: 0 8px 16px rgba(30, 32, 34, 0.06);
  --shadow-lg: 0 16px 32px rgba(30, 32, 34, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--accent-primary);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--text-main);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background-color: var(--accent-primary);
  color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Layout Main Content & Sections */
main {
  flex: 1;
}

section {
  padding: 5rem 0;
}


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

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: radial-gradient(circle at top right, var(--accent-light) 0%, var(--bg-primary) 60%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--text-main) 30%, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin: 1.5rem 0 2.5rem 0;
  max-width: 600px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-main);
}

/* Trust Strip */
.trust-strip {
  padding: 2.5rem 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.trust-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-secondary);
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Feature Pillars Section */
.pillars {
  padding: 6rem 0;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
}

.pillar-card:hover::before {
  height: 100%;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.pillar-card h3 {
  font-size: 1.35rem;
}

.pillar-card ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-card li::before {
  content: '→';
  color: var(--accent-primary);
  font-weight: bold;
}

/* Catalog View */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.catalog-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.catalog-search-wrapper {
  margin-bottom: 2rem;
  position: relative;
}

.catalog-search {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-card);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.catalog-search:focus {
  outline: none;
  border-color: var(--text-main);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
}

.filter-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.filter-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-pill {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-pill:hover {
  background-color: var(--bg-secondary);
  color: var(--text-main);
}

.filter-pill.active {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-main);
  font-weight: 600;
}

.filter-count {
  font-size: 0.75rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 20px;
  color: var(--text-muted);
}

/* Products Grid */
.products-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.products-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.products-count-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Blog card cover image strip */
.blog-card-img-link {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-card);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* fully fit without cropping */
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--text-main);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.badge-service {
  background-color: var(--accent-secondary);
}

.product-badge.badge-unavailable {
  background-color: #8E9094;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.product-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-card-enquire {
  background: none;
  border: 1px solid var(--text-main);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card:hover .btn-card-enquire {
  background-color: var(--text-main);
  color: white;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-muted);
}

/* Corporate Section */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.corporate-info-pane {
  position: sticky;
  top: 110px;
}

.corporate-features {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.corp-feat-item {
  display: flex;
  gap: 15px;
}

.corp-feat-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: var(--bg-secondary);
  flex-shrink: 0;
}

.corp-feat-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.corp-feat-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.form-pane {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.form-title {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-primary);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--text-main);
  background-color: white;
}

.form-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* Form Success Overlay State */
.form-success-wrapper {
  display: none;
  text-align: center;
  padding: 3rem 0;
  animation: fadeIn 0.3s ease-in-out;
}

.success-icon {
  font-size: 4rem;
  color: green;
  margin-bottom: 1.5rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feat {
  border-left: 3px solid var(--accent-primary);
  padding-left: 1rem;
}

.about-feat h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.about-feat p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.about-timeline {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-secondary);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--accent-primary);
}

.contact-details h4 {
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.map-placeholder {
  height: 250px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 32, 34, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2.5rem;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-product-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-product-img-wrapper {
  height: 250px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.modal-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1) rotate(10deg);
}




/* Footer Section */
footer {
  background-color: var(--text-main);
  color: white;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.footer-col p {
  color: #B3B5B8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #B3B5B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #B3B5B8;
}

.footer-contact-item span:first-child {
  color: var(--accent-primary);
}

.footer-social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.footer-social-links a {
  color: #B3B5B8;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-links a:hover {
  color: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #8E9094;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .catalog-sidebar {
    position: static;
  }
  
  .filter-pills {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .filter-pill {
    width: auto;
  }
  
  .corporate-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .corporate-info-pane {
    position: static;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  
  nav.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-pane {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* =========================================================================
   NEW CONTENT SECTIONS: PROCESS GUIDE, START-UP CARD, FAQ ACCORDION
   ========================================================================= */

/* Sublimation Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.process-step {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Business Opportunity Cards */
.business-opportunity-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-md);
}

.business-opp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.business-opp-header h3 {
  font-size: 1.8rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

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

.opp-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  border-left: 3px solid var(--accent-secondary);
  padding-left: 0.75rem;
}

.opp-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Accordion Styling */
.faq-accordion {
  max-width: 800px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
}

.faq-header span {
  padding-right: 1.5rem;
}

.faq-header i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header i {
  transform: rotate(45deg);
  color: var(--accent-primary);
}

.faq-item.active .faq-content {
  max-height: 250px; /* Large enough to display answer */
  padding: 0 1.5rem 0.5rem 1.5rem;
}

/* =========================================================================
   BROCHURE FLIPBOOK CATALOG STYLES
   ========================================================================= */

.catalog-filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  color: var(--text-main);
  border-color: var(--text-main);
}

.filter-tab.active {
  background-color: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.flipbook-wrapper {
  perspective: 1500px;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.flipbook {
  width: 100%;
  height: 570px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

/* Central spine line for book depth effect */
.flipbook::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(0,0,0,0.12) 0%, 
    rgba(0,0,0,0.04) 25%, 
    rgba(0,0,0,0) 50%, 
    rgba(0,0,0,0.04) 75%, 
    rgba(0,0,0,0.12) 100%);
  pointer-events: none;
  z-index: 10;
}

.flip-page {
  position: relative;
  height: 100%;
  padding: 3rem;
  background-color: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  scrollbar-width: thin;
}

.flip-page-left {
  border-right: 1px solid var(--border-color);
  background: linear-gradient(90deg, #FFFFFF 95%, #F5EFEB 100%);
}

.flip-page-right {
  background: linear-gradient(-90deg, #FFFFFF 95%, #F5EFEB 100%);
}

.flipbook-cover-page {
  grid-column: span 2;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--accent-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  position: relative;
}

.flipbook-cover-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.flipbook-cover-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.flipbook-cover-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.flipbook-cover-sub {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.flipbook-page-image-wrapper {
  width: 100%;
  height: 280px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flipbook-page-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flipbook-page-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-light);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.flipbook-page-badge.badge-service {
  background-color: #E6F3FA;
  color: #0288D1;
  border-color: #0288D1;
}

.flipbook-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-flip-nav {
  padding: 0.75rem 1.5rem;
  background-color: var(--text-main);
  color: white;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-flip-nav:hover:not(:disabled) {
  background-color: var(--accent-primary);
}

.btn-flip-nav:disabled {
  background-color: var(--border-color);
  color: var(--text-light);
  cursor: not-allowed;
}

.flipbook-page-num {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations for flipping page turns */
.page-flip-animate {
  animation: pageTurnEffect 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes pageTurnEffect {
  from { opacity: 0.6; transform: rotateY(-3deg) scale(0.99); }
  to { opacity: 1; transform: rotateY(0) scale(1); }
}

/* Mobile adjustments for the booklet flipbook */
@media (max-width: 767px) {
  .flipbook-wrapper {
    max-width: 500px;
  }
  
  .flipbook {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 520px;
    border-radius: var(--border-radius-md);
  }
  
  .flipbook::after {
    display: none; /* Hide spine shadow */
  }
  
  .flip-page {
    padding: 2rem 1.5rem;
    border-right: none;
    background: #FFFFFF;
    justify-content: flex-start;
    gap: 1.5rem;
  }
  
  .flipbook-cover-page {
    grid-column: span 1;
    padding: 3rem 1.5rem;
  }
  
  .flipbook-page-image-wrapper {
    height: 200px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .business-opportunity-card {
    padding: 2rem 1.5rem;
  }

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

  /* Reels Carousel Mobile Responsiveness */
  .reels-slider-outer {
    max-width: 100% !important;
    padding: 0 1rem;
  }
  .reels-nav {
    display: none !important;
  }
  .reels-slider-viewport {
    overflow-x: auto !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
  }
  .reels-slider-viewport::-webkit-scrollbar {
    display: none;
  }
  .reels-track {
    gap: 1rem !important;
  }
}


/* =========================================================================
   HOME PAGE REDESIGN ADDITIONAL STYLES
   ========================================================================= */

/* Core Pillars Visual Upgrades */
.pillar-card {
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary) !important;
}
.pillar-card:hover .pillar-img-creative {
  transform: scale(1.06);
}

/* Instagram Reels UI Upgrades */
.container-reels {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.live-feed-badge {
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
.pulse-dot {
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.4; transform: scale(1); }
}
/* ─── Reels Cards ─── */
.reel-card {
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(225, 48, 108, 0.25) !important;
  border-color: rgba(225, 48, 108, 0.5) !important;
}
.btn-reel-instagram:hover {
  background: #c13584 !important;
  transform: scale(1.05);
}

/* Google Reviews Section Styles */
.google-reviews-section {
  position: relative;
}
.reviews-summary-block {
  transition: transform 0.3s ease;
}
.reviews-summary-block:hover {
  transform: translateY(-5px);
}
.review-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08) !important;
  border-color: var(--accent-primary) !important;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--border-color);
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
}

/* Brand Story Section Grid */
.brand-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Google Reviews Layout & Grid */
.reviews-section-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}

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

/* Product Inquiry Form Grid Row */
.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

@media (max-width: 991px) {
  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .reviews-section-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .form-grid-row {
    grid-template-columns: 1fr !important;
  }
}

/* AKP Sublimations Professional Refined Gold/Amber CTA System */
.webinar-cta-btn {
  background: linear-gradient(135deg, #E5890A 0%, #D85C27 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading), sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.98rem !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(229, 137, 10, 0.35) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  box-sizing: border-box !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}
.webinar-cta-btn:hover {
  background: linear-gradient(135deg, #f09513 0%, #e8642e 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(229, 137, 10, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.webinar-cta-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(229, 137, 10, 0.3) !important;
}

