/* Print Hybrid - Main Stylesheet */

/* ============================================
   CSS RESET & VARIABLES
   ============================================ */

:root {
  /* Colors - Exact values from live printhybrid.com */
  --black: #000000;
  --white: #ffffff;
  --cyan: #00abed;           /* rgb(0, 171, 237) */
  --magenta: #ea008a;        /* rgb(234, 0, 138) */
  --yellow: #f7d200;         /* rgb(247, 210, 0) */
  --purple: #8b159b;         /* rgb(139, 21, 155) */
  --orange: #f47d4e;         /* rgb(244, 125, 78) */
  --pink: #ff1493;
  --green: #00ff00;

  /* Gradients - 4-segment rainbow from live site */
  --gradient-cmyk: linear-gradient(90deg,
    #00abed 0%, #00abed 15%,
    #ea008a 50%,
    #f7d200 85%, #f7d200 100%);
  --gradient-rainbow: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow), var(--orange), var(--magenta), var(--pink));

  /* Typography */
  --font-display: 'Bebas Neue', Arial, Helvetica, sans-serif;
  --font-body: Montserrat, Arial, Helvetica, sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1400px;
  --container-padding: 0 20px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.text-cyan { color: var(--cyan); }
.text-magenta { color: var(--magenta); }
.text-yellow { color: var(--yellow); }
.text-orange { color: var(--orange); }
.text-pink { color: var(--pink); }
.text-white { color: var(--white); }

/* AI SEO Summary - visually hidden but accessible to AI crawlers */
.ai-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-black { background-color: var(--black); }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.display-heading {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
}

.section-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.2;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 20px;
}

.hamburger {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  background-color: var(--cyan);
}

.hamburger span:nth-child(2) {
  background-color: var(--magenta);
}

.hamburger span:nth-child(3) {
  background-color: var(--yellow);
}

.hamburger:hover span:nth-child(1) {
  animation: wiggle 0.4s ease-in-out;
}

.hamburger:hover span:nth-child(2) {
  animation: wiggle 0.4s ease-in-out 0.1s;
}

.hamburger:hover span:nth-child(3) {
  animation: wiggle 0.4s ease-in-out 0.2s;
}

/* Hamburger morphs into X when active - cyan & magenta form the X */
.hamburger.active span:nth-child(1) {
  /* Cyan bar - rotates to form top of X */
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  /* Magenta bar - rotates to form bottom of X */
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(3) {
  /* Yellow bar - hide it */
  opacity: 0;
}

/* Navigation Overlay - Expands as screen shrinks to keep text readable */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;  /* Wide screens: 30% */
  height: 100vh;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  container-type: inline-size;  /* Enable container queries for proportional text */
}

/* Medium screens: expand to 40% */
@media (max-width: 1024px) {
  .nav-overlay {
    width: 40%;
  }
}

/* Smaller screens: expand to 50% */
@media (max-width: 768px) {
  .nav-overlay {
    width: 50%;
  }
}

/* Mobile: expand to 60% */
@media (max-width: 480px) {
  .nav-overlay {
    width: 60%;
  }
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Gradient Background - slides in from right */
.nav-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #f7d200 0%,
    #f47d4e 25%,
    #ea008a 50%,
    #8b159b 75%,
    #00abed 100%
  );
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-out;
}

.nav-overlay.active .nav-background {
  transform: scaleX(1);
}

/* Close Button - hidden, using hamburger X instead */
.nav-close {
  display: none;
}

/* Menu Content Container */
.nav-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 30px 40px;
  overflow: hidden;  /* Keep all content within the nav panel */
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.nav-menu li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-overlay.active .nav-menu li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delays */
.nav-overlay.active .nav-menu li:nth-child(1) { transition-delay: 0.15s; }
.nav-overlay.active .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-menu li:nth-child(3) { transition-delay: 0.25s; }
.nav-overlay.active .nav-menu li:nth-child(4) { transition-delay: 0.3s; }
.nav-overlay.active .nav-menu li:nth-child(5) { transition-delay: 0.35s; }
.nav-overlay.active .nav-menu li:nth-child(6) { transition-delay: 0.4s; }

.nav-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 16cqw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--white);
}

/* Footer Info */
.nav-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.nav-footer-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-overlay.active .nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}

.nav-footer-contact a,
.nav-footer-social a,
.nav-footer-copyright {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s ease;
}

.nav-footer-contact a:hover,
.nav-footer-social a:hover {
  text-decoration: underline;
  color: var(--white);
}

.nav-footer-bottom a,
.nav-footer-bottom span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.btn-outline-yellow {
  border-color: var(--yellow);
  color: var(--white);
}

.btn-outline-yellow:hover {
  background-color: var(--yellow);
  color: var(--black);
}

.btn-outline-cyan {
  border-color: var(--cyan);
  color: var(--white);
}

.btn-outline-cyan:hover {
  background-color: var(--cyan);
  color: var(--black);
}

.btn-outline-magenta {
  border-color: var(--magenta);
  color: var(--white);
}

.btn-outline-magenta:hover {
  background-color: var(--magenta);
  color: var(--white);
}

/* ============================================
   GRADIENT LINES
   ============================================ */

.gradient-line {
  height: 4px;
  background: var(--gradient-cmyk);
}

.gradient-line-thin {
  height: 2px;
  background: var(--gradient-cmyk);
}

.rainbow-stripe {
  height: 4px;
  background: var(--gradient-cmyk);
}

/* ============================================
   CARDS
   ============================================ */

.service-card {
  position: relative;
  border: 2px solid var(--white);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* FAQ Flip Cards - 3D flip effect like live site */
.faq-flip-card {
  perspective: 1000px;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.faq-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.faq-flip-card:hover .faq-flip-inner {
  transform: rotateY(180deg);
}

.faq-flip-front,
.faq-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 5px solid rgb(255, 255, 255);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Front of card */
.faq-flip-front {
  background-image: url('../images/RaindowSqueegee.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-flip-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Color overlay variants */
.faq-card-magenta::before {
  background: linear-gradient(135deg, rgba(234, 0, 138, 0.45) 0%, rgba(139, 21, 155, 0.5) 100%);
}

.faq-card-cyan::before {
  background: linear-gradient(135deg, rgba(0, 171, 237, 0.45) 0%, rgba(139, 21, 155, 0.5) 100%);
}

.faq-card-yellow::before {
  background: linear-gradient(135deg, rgba(247, 210, 0, 0.5) 0%, rgba(244, 125, 78, 0.45) 100%);
}

.faq-card-purple::before {
  background: linear-gradient(135deg, rgba(139, 21, 155, 0.5) 0%, rgba(234, 0, 138, 0.45) 100%);
}

.faq-card-orange::before {
  background: linear-gradient(135deg, rgba(244, 125, 78, 0.5) 0%, rgba(234, 0, 138, 0.45) 100%);
}

.faq-card-pink::before {
  background: linear-gradient(135deg, rgba(247, 210, 0, 0.5) 0%, rgba(244, 125, 78, 0.45) 100%);
}

/* Back of card */
.faq-flip-back {
  background: white;
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.faq-flip-back h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  color: var(--magenta);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.faq-flip-back p {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.faq-flip-back p strong {
  color: var(--magenta);
}

/* Question mark icon - Font Awesome */
.question-mark-icon {
  margin-bottom: 10px;
  text-align: center;
  display: table;
  position: relative;
  z-index: 1;
}

.question-mark-icon i {
  font-size: 60px;
  color: rgb(255, 255, 255);
  font-weight: 900;
  line-height: 60px;
  display: inline-block;
}

/* FAQ front heading */
.faq-flip-front h4 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.0;
  letter-spacing: -0.5px;
  text-transform: none;
  color: rgb(255, 255, 255);
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: var(--section-padding);
  position: relative;
}

/* Hero Section - Exact match to live printhybrid.com */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(152deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  width: 100%;
  max-width: none;
  padding: 0 5vw;
  box-sizing: border-box;
}

.hero-logo {
  flex-shrink: 1;
  width: 40%;
  max-width: 543px;
  min-width: 200px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.9));
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-tagline {
  text-align: right;
  flex-shrink: 1;
  min-width: 0;
  width: 50%;
  max-width: 600px;
}

.hero-tagline .tagline-lines {
  height: 6px;
  background: var(--gradient-cmyk);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  margin: 10px 0;
}

.hero-tagline h1 {
  font-size: clamp(60px, 7.3vw, 99px);
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
  padding: 0;
}

.hero-tagline h1 .text-cyan {
  display: block;
  margin-bottom: 10px;
}

.hero-tagline h1 .text-magenta {
  display: block;
  margin-bottom: 10px;
}

.tagline-rotate {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  min-height: clamp(45px, 5.5vw, 74px);
}

.tagline-rotate .text-yellow {
  font-size: clamp(45px, 5.5vw, 74px);
  line-height: 1;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
  display: inline-block;
}

/* Value Proposition Section */
.value-prop {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 39px;
  background-color: #000000;
  background-image: url('../images/CMYKBG-Top-Right.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.value-prop .container {
  padding-top: 67px;
  padding-left: 10vw;
  padding-right: 10vw;
}

.value-prop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value-prop-text h2 {
  font-size: 90px;
  line-height: 74.7px;
  letter-spacing: -1.35px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.value-prop-text .body-text {
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0.27px;
  text-align: justify;
  color: rgb(240, 240, 240);
  max-width: none;
}

.value-prop-text .why-not {
  font-size: 54px;
  line-height: 44.82px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

.value-prop-text .gradient-line {
  margin: 30px 0 0 0;
}

.value-prop-image {
  position: relative;
}

.hover-float {
  animation: float 3s ease-in-out infinite;
}

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

/* Services Section */
.services {
  padding-bottom: 0;
}

.services .container {
  max-width: 1200px;
  padding-left: 80px;
  padding-right: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flip Card Styles */
.flip-card {
  perspective: 1000px;
  height: 350px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border: 3px solid;
  box-sizing: border-box;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flip-card-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.flip-card-front h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.76px;
  text-transform: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--white);
}

/* Card color variants - white borders with subtle color tints */
.flip-card-cyan {
  border-color: var(--white);
}
.flip-card-cyan::before {
  background: linear-gradient(135deg, rgba(0, 171, 237, 0.25), rgba(0, 0, 0, 0.4));
}

.flip-card-magenta {
  border-color: var(--white);
}
.flip-card-magenta::before {
  background: linear-gradient(135deg, rgba(234, 0, 138, 0.25), rgba(0, 0, 0, 0.4));
}

.flip-card-yellow {
  border-color: var(--white);
}
.flip-card-yellow::before {
  background: linear-gradient(135deg, rgba(247, 210, 0, 0.25), rgba(0, 0, 0, 0.4));
}

.flip-card-back {
  background: var(--white);
  color: var(--black);
  transform: rotateY(180deg);
  border-color: #ccc;
}

.flip-card-back h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--black);
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.flip-card-link {
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.flip-card-link:hover {
  color: var(--magenta);
}

/* Integrity Section */
.integrity-section {
  position: relative;
  padding: 0 30px;
  margin-top: 0;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('../images/RaindowSqueegee.jpg');
  background-size: cover;
  background-position: 100% 0%;
  background-repeat: no-repeat;
}

.integrity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.integrity-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.integrity-section h2 {
  font-size: 90px;
  line-height: 74.7px;
  letter-spacing: -1.35px;
  margin-bottom: 0;
}

.integrity-section .body-text {
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0.27px;
  color: rgb(240, 240, 240);
  margin: 50px auto 0;
  max-width: none;
}

/* 20 Years Section */
.twenty-years-section {
  padding: 0;
}

.twenty-years {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 70px 80px 36px;
  max-width: 1060px;
  margin: 0 auto;
}

.twenty-years-image {
  flex: 1;
}

.twenty-years-image img {
  max-width: 468px;
}

.twenty-years-text {
  flex: 1;
}

.twenty-years-text h2 {
  font-size: 72.7px;
  line-height: 60.3px;
  letter-spacing: -1.09px;
  margin-bottom: 0;
}

.twenty-years-text .body-text {
  font-size: 14.5px;
  line-height: 22.8px;
  letter-spacing: 0.22px;
  color: rgb(240, 240, 240);
  margin-bottom: 0;
}

.twenty-years-text .contact-heading {
  font-size: 43.7px;
  line-height: 36px;
  letter-spacing: 0.81px;
  margin-top: 19px;
  margin-bottom: 14px;
}

.twenty-years-text .btn {
  width: 100%;
  font-size: 29px;
  padding: 12px 16px;
  border-width: 2px;
  border-radius: 4px;
  letter-spacing: 0.44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

/* What Is Section (Two Column) */
.what-is-section {
  padding: 0;
  position: relative;
}

.what-is-section::before,
.what-is-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cmyk);
  z-index: 10;
}

.what-is-section::before {
  top: 0;
}

.what-is-section::after {
  bottom: 0;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.what-is-card {
  position: relative;
  padding: 65px 85px;
  min-height: 490px;
  display: flex;
  align-items: center;
  background-size: auto;
  background-position: 100% 0%;
  background-repeat: repeat;
}

.what-is-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.what-is-content {
  position: relative;
  z-index: 1;
  max-width: 450px;
}

/* Left card - magenta overlay, left aligned text but centered in column */
.what-is-left {
  background-image: url('../images/Hybrid-Printing.jpg');
  justify-content: center;
  text-align: left;
}

.what-is-left::before {
  background: linear-gradient(100deg, rgba(141, 21, 157, 0.75) 0%, rgba(235, 0, 137, 0.75) 75%);
}

.what-is-left .what-is-content {
  align-items: flex-start;
}

/* Right card - orange/yellow overlay, right aligned text but centered in column */
.what-is-right {
  background-image: url('../images/Digital-Transfer-Printing.jpg');
  background-position: 50% 50%;
  justify-content: center;
  text-align: right;
}

.what-is-right::before {
  background: linear-gradient(80deg, rgba(235, 0, 137, 0.75) 25%, rgba(244, 125, 78, 0.75) 100%);
}

.what-is-right .what-is-content {
  align-items: flex-end;
}

.what-is-right .btn {
  margin-left: auto;
}

/* What Is - Typography */
.what-is-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -1.26px;
  margin-bottom: 20px;
}

.what-is-subtitle {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  font-weight: 400;
  color: white;
  margin-bottom: 25px;
}

.what-is-card p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 1;
  color: white;
}

.what-is-card .btn {
  font-size: clamp(18px, 2vw, 24px);
  padding: 14px 40px;
  min-width: 280px;
  text-align: center;
  letter-spacing: 2px;
}

/* Location Section */
.location-section {
  position: relative;
  padding: 46.36px 20px 146.13px;
  overflow: hidden;
  background-color: #000000;
}

.location-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.location-info {
  /* Left column - content block pushed to right edge */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.location-map {
  flex: 0 0 380px;
}

.location-info {
  /* Contact info column - already styled above */
}

.location-heading {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 400;
  font-family: var(--font-display);
  position: relative;
  z-index: 5;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 6.3px;
}

.location-item a,
.location-item p,
.location-item address {
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ffffff;
}

.location-icon {
  width: 30.59px;
  height: 30.59px;
  background-color: rgb(234, 0, 138);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15.84px;
  color: #ffffff;
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 380px;
  /* Left-aligned in the right column */
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Robot Characters */
.robot-left,
.robot-right {
  position: absolute;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.robot-left {
  left: 0;
  max-width: 304px;
}

.robot-right {
  right: 0;
  max-width: 304px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: rgb(139, 21, 155);
  padding: 0;
  position: relative;
  min-height: 84px;
}

.footer .rainbow-stripe {
  display: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
}

.footer-copyright {
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-social svg {
  fill: rgb(139, 21, 155);
  width: 18px;
  height: 18px;
}

/* ============================================
   DRIP GRAPHICS
   ============================================ */

.drip-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.drip-bottom img {
  width: 100%;
}

/* ============================================
   TL;DR SUMMARY BOXES - AEO Optimization
   ============================================ */

.tldr {
  /* Visually hidden but accessible to screen readers and AI crawlers */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  /* Location Section - Stack columns, centered block but left-aligned content */
  .location-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }

  .location-info {
    align-items: flex-start;
    text-align: left;
  }

  .location-heading {
    text-align: left;
    font-size: 48px;
  }

  .location-details {
    align-items: flex-start;
  }

  .location-item {
    justify-content: flex-start;
  }

  .location-map {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .location-map iframe {
    height: 300px;
  }

  /* Value-prop Section */
  .value-prop .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .value-prop-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-prop-text {
    text-align: left;
  }

  .value-prop-text h2 {
    font-size: 60px;
    line-height: 50px;
    text-align: left;
  }

  .value-prop-text .why-not {
    font-size: 36px;
    line-height: 30px;
    white-space: normal;
    text-align: left;
  }

  .value-prop-text .body-text {
    text-align: left;
  }

  .value-prop-image {
    order: -1;
  }

  /* Integrity Section */
  .integrity-section {
    min-height: 400px;
    padding: 40px 20px;
  }

  .integrity-section h2 {
    font-size: 48px;
    line-height: 40px;
  }

  .integrity-section .body-text {
    margin-top: 30px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social span {
    width: 100%;
    text-align: center;
  }

  /* Nav Menu - keep same look as desktop */
  .nav-footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* What Is Section */
  .what-is-grid {
    grid-template-columns: 1fr;
  }

  .what-is-card {
    padding: 40px 30px;
    min-height: auto;
  }

  .what-is-left,
  .what-is-right {
    text-align: center;
    justify-content: center;
  }

  .what-is-left .what-is-content,
  .what-is-right .what-is-content {
    align-items: center;
  }

  .what-is-right .btn {
    margin-left: 0;
  }

  /* 20 Years Section */
  .twenty-years {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .twenty-years-text {
    order: -1;
  }

  .twenty-years-text h2 {
    font-size: 48px;
    line-height: 40px;
  }

  /* Hero Section */
  .hero-content {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .hero-logo {
    width: 60%;
    max-width: 250px;
  }

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

  .hero-tagline h1 {
    font-size: 36px;
  }

  .tagline-rotate .text-yellow {
    font-size: 28px;
  }
}
