/* ============================================
   GANS PRINT - Main Stylesheet
   Screen Printing & Packaging Company
   ============================================ */

/* === CSS Custom Properties (Design Tokens) === */
:root {
  /* Primary Luxury Colors */
  --primary-navy: #0f172a;       /* Slate 900 - Deep, modern charcoal navy */
  --primary-navy-dark: #020617;  /* Slate 950 - Sleek absolute dark */
  --primary-navy-light: #1e293b; /* Slate 800 - Classy slate light */
  --primary-gold: #d4af37;       /* Premium Metallic Gold */
  --primary-gold-dark: #b58d1d;  /* Deep Bronze Gold */
  --primary-gold-light: #f5e3a8; /* Creamy Champagne Gold */

  /* Vibrant Accent CMYK Colors */
  --cmyk-cyan: #0ea5e9;          /* Sky 500 - Pure electric cyan */
  --cmyk-magenta: #ec4899;       /* Pink 500 - Bright premium magenta */
  --cmyk-yellow: #eab308;        /* Yellow 500 - Rich warm yellow */
  --cmyk-black: #1e293b;
  --cmyk-pink: #fbcfe8;

  /* Premium Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;          /* Slate 50 - Ultra-clean off-white */
  --light-gray: #f1f5f9;         /* Slate 100 - Elegant light border/background */
  --medium-gray: #e2e8f0;        /* Slate 200 - Soft slate divider */
  --dark-gray: #64748b;          /* Slate 500 - High-contrast muted text */
  --text-dark: #0f172a;          /* Slate 900 - Very high readability */
  --text-muted: #475569;         /* Slate 600 - Sophisticated body copy */

  /* Custom Glows & Gradients */
  --gradient-hero: radial-gradient(circle at top right, #1e293b 0%, #0f172a 60%, #020617 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5e3a8 50%, #b58d1d 100%);
  --gradient-cta: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);

  /* High-End Typography */
  --font-heading: 'Outfit', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Poppins', sans-serif;

  /* Sophisticated Spacing */
  --section-padding: 120px 0;
  --container-max: 1240px;
  --container-padding: 0 32px;

  /* Modern Layered Shadows */
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-card: 0 10px 40px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 30px 60px rgba(15, 23, 42, 0.15);
  --shadow-gold-glow: 0 8px 30px rgba(212, 175, 55, 0.3);

  /* Modern Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Ultra Smooth Cubic Bezier Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--primary-navy);
}

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

/* === NAVBAR (Floating Glassmorphism) === */
.navbar {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(190%);
  -webkit-backdrop-filter: blur(16px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  transition: all var(--transition-smooth);
  height: 76px;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
}

.navbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

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

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary-navy);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 8px 16px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.navbar-phone:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-1px);
}

.navbar-phone .wa-icon {
  color: #25d366;
  font-size: 1.1rem;
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primary-navy);
  background: var(--off-white);
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

.navbar-social a:hover {
  background: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary-navy);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  margin-top: 0;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  pointer-events: none;
}

/* Decorative diagonal stripe */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(15deg);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45);
}

.btn-gold-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatImage 6s ease-in-out infinite;
}

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

/* === FEATURES BAR === */
.features-bar {
  background: var(--white);
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.features-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  transition: all var(--transition-smooth);
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--medium-gray);
}

.feature-item:hover {
  background: var(--off-white);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}

.feature-icon.quality {
  background: linear-gradient(135deg, var(--cmyk-cyan), #0097a7);
}

.feature-icon.price {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
}

.feature-icon.speed {
  background: linear-gradient(135deg, var(--cmyk-magenta), #c2185b);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* === SECTION COMMON === */
.section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin-top: 12px;
  border-radius: 2px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
}

/* === ABOUT SECTION === */
.about {
  background: var(--off-white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-content p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px;
  color: var(--primary-navy);
  font-weight: 700;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* === SERVICES SECTION === */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 175, 55, 0.25);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.08));
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.service-card-body h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--gradient-gold);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.service-card:hover .service-card-body h3::after {
  width: 100%;
}

.service-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === CONTACT INFO BAR === */
.contact-info-bar {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--medium-gray);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-item i {
  color: var(--primary-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--primary-navy);
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--primary-gold);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--gradient-cta);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="c" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(212,168,67,0.06)"/></pattern></defs><rect fill="url(%23c)" width="100" height="100"/></svg>');
  pointer-events: none;
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-cta .arrow {
  transition: transform var(--transition-smooth);
}

.btn-cta:hover .arrow {
  transform: translateX(4px);
}

.cta-image {
  display: flex;
  justify-content: center;
}

.cta-image img {
  max-width: 380px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* === FOOTER === */
.footer {
  background: var(--primary-navy-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary-gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--primary-gold);
}

.footer-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #25d366;
  font-size: 0.8rem;
  margin-left: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-social {
  display: flex;
  gap: 16px;
}

.footer-bottom-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.footer-bottom-social a:hover {
  color: var(--primary-gold);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delays for cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-smooth);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-image {
    display: none;
  }

  .features-bar .container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-item:not(:last-child)::after {
    right: 20%;
    left: 20%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 60%;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .navbar-nav,
  .navbar-right {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .navbar-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 32px 24px;
    gap: 24px;
    z-index: 999;
    animation: slideDown 0.3s ease;
  }

  .navbar-right.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--off-white);
    padding: 20px 24px;
    z-index: 999;
    border-top: 1px solid var(--medium-gray);
  }

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

  .hero {
    min-height: 420px;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .features-bar {
    margin-top: -20px;
  }

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

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

  .service-card-image {
    height: 180px;
  }

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

  .cta-image img {
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .feature-item {
    padding: 20px 24px;
  }

  .about-content p:first-of-type::first-letter {
    font-size: 2.8rem;
  }
}

/* === PAGE HEADER (Articles, etc.) === */
.page-header {
  background: var(--gradient-hero);
  padding: 40px 0;
  margin-top: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ph" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23ph)" width="100" height="100"/></svg>');
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 500;
}

/* === ARTICLES PAGE === */
.articles-section {
  background: var(--off-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.article-card-image {
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.article-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--medium-gray);
  font-size: 2.5rem;
}

.article-card-body {
  padding: 24px;
}

.article-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--dark-gray);
}

.article-card-meta i {
  margin-right: 4px;
  color: var(--primary-gold);
}

.article-card-body h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-card-body h2 a {
  color: var(--primary-navy);
  transition: color var(--transition-fast);
}

.article-card-body h2 a:hover {
  color: var(--primary-gold);
}

.article-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-gold);
  transition: all var(--transition-fast);
}

.article-read-more:hover {
  color: var(--primary-gold-dark);
  gap: 10px;
}

/* Articles Empty State */
.articles-empty {
  text-align: center;
  padding: 80px 20px;
}

.articles-empty i {
  font-size: 4rem;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.articles-empty h3 {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.articles-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Articles Pagination */
.articles-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.articles-pagination nav {
  display: flex;
  gap: 8px;
}

/* === ARTICLE DETAIL PAGE === */
.article-detail {
  background: var(--white);
}

.article-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-featured-image {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--dark-gray);
}

.article-meta i {
  margin-right: 6px;
  color: var(--primary-gold);
}

.article-main h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* Article Content (Prose) */
.article-content.prose {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.article-content.prose h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

.article-content.prose h3 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
}

.article-content.prose p {
  margin-bottom: 16px;
}

.article-content.prose img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.article-content.prose ul,
.article-content.prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-content.prose li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-content.prose ol li {
  list-style: decimal;
}

.article-content.prose blockquote {
  border-left: 4px solid var(--primary-gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--primary-navy);
}

.article-content.prose a {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* Share Buttons */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--medium-gray);
}

.article-share span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }

.article-share a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-gold);
}

.sidebar-article {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-gray);
  transition: all var(--transition-fast);
}

.sidebar-article:last-child {
  border-bottom: none;
}

.sidebar-article:hover {
  opacity: 0.8;
}

.sidebar-article img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sidebar-article h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.sidebar-article span {
  font-size: 0.78rem;
  color: var(--dark-gray);
}

.sidebar-cta {
  background: var(--primary-navy);
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--white);
  border-bottom-color: var(--primary-gold);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Responsive for articles */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-detail-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

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

  .page-header h1 {
    font-size: 1.6rem;
  }

  .article-main h1 {
    font-size: 1.5rem;
  }

  .article-featured-image img {
    height: 250px;
  }
}

/* ==========================================================================
   GANS PRINT - Premium Custom Features (Portfolio, Testimonials, FAQ)
   ========================================================================== */

/* === PORTOFOLIO GALLERY === */
.portfolio {
  background-color: var(--white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--medium-gray);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  background: var(--light-gray);
  color: var(--primary-navy);
  border-color: var(--dark-gray);
}

.filter-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

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

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all var(--transition-smooth);
}

.portfolio-card.hide {
  display: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.portfolio-card-inner {
  position: relative;
  width: 100%;
}

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: var(--radius-md);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Glassmorphism Hover Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  transition: opacity var(--transition-smooth);
  color: var(--white);
  z-index: 2;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 90%;
}

.portfolio-link-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366; /* WA Green */
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(37, 211, 98, 0.3);
  transition: all var(--transition-smooth);
}

.portfolio-link-wa:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 98, 0.4);
}

.portfolio-link-wa i {
  font-size: 1.05rem;
}

.portfolio-empty {
  grid-column: span 3;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

/* === TESTIMONIALS SLIDER === */
.testimonials {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testimonials-slider-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 10px;
}

.testimonials-slider {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-client img {
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  background-color: var(--light-gray);
}

.client-info h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.client-info span {
  font-size: 0.82rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.testimonial-rating {
  font-size: 0.95rem;
}

.star-filled {
  color: var(--primary-gold);
}

.star-empty {
  color: var(--medium-gray);
}

.testimonial-body {
  position: relative;
}

.testimonial-body .quote-icon {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.08);
  position: absolute;
  top: -24px;
  left: -10px;
  z-index: 1;
}

.testimonial-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  font-size: 0.9rem;
}

.slider-btn:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.dot.active {
  background: var(--primary-gold);
  width: 24px;
  border-radius: 8px;
}

.testimonial-empty {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

/* === FAQ ACCORDION === */
.faq {
  background-color: var(--white);
}

.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.faq-item:hover {
  border-color: var(--medium-gray);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-smooth);
}

.faq-trigger span:first-child {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  letter-spacing: 0.01em;
  padding-right: 20px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-gold);
  color: var(--white);
  transform: rotate(45deg); /* Rotates plus to cross */
  box-shadow: var(--shadow-gold-glow);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth) ease-out;
}

.faq-content {
  padding: 0 28px 24px;
}

.faq-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-card-image {
    height: 220px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .faq-trigger {
    padding: 20px 24px;
  }
  
  .faq-trigger span:first-child {
    font-size: 0.95rem;
  }
}

