/* Tiger Labs SG — Exact WIX Match */
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --base-yellow: #F4BC34;
  --base-purple: #341934;
  --accent-green: #223318;
  --accent-gold: #B59853;
  --accent-blue: #2345A9;
  --primary-bg: #F4BC34;
  --secondary-bg: #B59853;
  --lines: #644234;
  --title-color: #341934;
  --subtitle-color: #341934;
  --body-color: #341934;
  --secondary-text: #644234;
  --action-color: #223318;
  --btn-fill: #223318;
  --btn-border: #223318;
  --btn-text: #F4BC34;
  --btn-hover-fill: #F4BC34;
  --btn-hover-border: #223318;
  --btn-hover-text: #223318;
  --white: #ffffff;
  --radius: 8px;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--body-color);
  line-height: 1.6;
  background: var(--primary-bg);
}

/* Exact WIX Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fjalla One', sans-serif;
  font-weight: 400;
  color: var(--title-color);
  line-height: 1.15;
}

h1 { font-size: 80px; }
h2 { font-size: 40px; }

/* SEO: keep h1 tag, but render at h2 size on subpages */
.page-title {
  font-size: 40px;
}
h3 { font-size: 26px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }

.p1 { font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif; font-size: 24px; line-height: 1.6; }
.p2 { font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif; font-size: 18px; line-height: 1.6; }
.p3 { font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif; font-size: 16px; line-height: 1.6; }

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

/* ===== HEADER ===== */
header {
  background: var(--base-yellow);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(100, 66, 52, 0.08);
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg {
  height: 48px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--base-purple);
}
.logo-tagline {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--base-purple);
  margin-top: 2px;
}

/* Nav */
nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  background: var(--secondary-bg);
  border-radius: 50px;
  padding: 4px;
}
nav a {
  font-family: 'Source Sans 3', sans-serif;
  text-decoration: none;
  color: var(--base-purple);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
  display: block;
}
nav a:hover {
  background: rgba(52,25,52,0.08);
}
nav a.active {
  background: var(--base-yellow);
  color: var(--base-purple);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--base-purple);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
}
.btn-primary {
  background: var(--accent-green); color: var(--white);
}
.btn-primary:hover {
  background: var(--secondary-bg); color: var(--base-purple);
}
.btn-outline {
  background: transparent; color: var(--btn-border);
  border: none;
}
.btn-outline:hover {
  background: var(--btn-hover-fill); color: var(--btn-hover-text);
}
.btn-light-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-light-outline:hover {
  background: var(--white); color: var(--base-purple);
}
.btn-gold {
  background: var(--base-yellow); color: var(--base-purple);
}
.btn-gold:hover {
  background: var(--base-purple); color: var(--base-yellow);
}

/* ===== SECTION PILL (green bar) ===== */
/* ===== SERVICE CARD ===== */
.service-card {
  background: var(--secondary-bg);
  padding: 32px;
  border-radius: var(--radius);
}

.section-pill {
  width: 8px;
  height: 32px;
  background: var(--accent-green);
  border-radius: 50px;
  flex-shrink: 0;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: rgba(34, 51, 24, 0.5);
  padding: 120px 0;
  text-align: center;
}
.quote-section h2 {
  color: var(--base-yellow);
  margin-bottom: 16px;
  line-height: 1.3;
  border: none;
  padding: 0;
}
.quote-section .p1 {
  color: var(--base-yellow);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(181,152,83,0.75), rgba(181,152,83,0.75)),
              url('/images/hero_replacement.jpg');
  background-size: cover; background-position: center; background-attachment: scroll;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 0 140px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-height: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
.hero h1 {
  font-family: 'Fjalla One', sans-serif; font-size: 80px;
  color: var(--white); margin: 0; line-height: 1.05;
}
.hero .subtitle {
  font-family: 'Source Sans 3', sans-serif; font-size: 24px;
  margin: 0; opacity: 0.95; color: var(--white);
  line-height: 1.5;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin: 0; }
.hero-buttons .btn-quote {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
  background: var(--accent-green); color: var(--white);
}
.hero-buttons .btn-quote:hover {
  background: var(--base-yellow); color: var(--base-purple);
}
.hero-buttons .btn-catalogue {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
  background: var(--base-purple); color: var(--base-yellow);
}
.hero-buttons .btn-catalogue:hover {
  background: var(--base-yellow); color: var(--base-purple);
}
.hero-buttons .btn-faq {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
  background: var(--base-yellow); color: var(--base-purple);
}
.hero-buttons .btn-faq:hover {
  background: var(--base-purple); color: var(--base-yellow);
}

/* Stats inside hero */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 0;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-stat:nth-child(1) {
  justify-self: start;
}
.hero-stat:nth-child(2) {
  justify-self: center;
}
.hero-stat:nth-child(3) {
  justify-self: end;
}
.hero-stat .stat-bar {
  width: 8px;
  height: 48px;
  background: var(--accent-green);
  border-radius: 50px;
  flex-shrink: 0;
}
.hero-stat strong {
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px; color: var(--white); font-weight: 400;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  background: var(--base-purple);
  color: var(--white);
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.page-header .container {
  width: 100%;
}
.page-header h1,
.page-header h2 {
  color: var(--white);
  margin: 0;
  line-height: 1.05;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-gold { background: var(--base-yellow); }
.section-secondary { background: var(--secondary-bg); }
.section-light { background: var(--base-yellow); }

/* Adjacent section fix - no gap */


.section-label {
  display: inline-block; background: var(--accent-green); color: var(--base-yellow);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; font-family: 'Source Sans 3', sans-serif;
}

/* ===== WHAT WE OFFER ===== */
.offer-section {
  background: var(--base-yellow);
  position: relative; overflow: hidden;
}
.offer-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}
.offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(52, 25, 52, 0.5);
  z-index: 1;
  pointer-events: none;
}
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.offer-text { padding: 40px 0; }
.offer-text .lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: 24px;
}

/* ===== WHY CHOOSE ===== */
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px;
}
.feature-card { display: flex; gap: 20px; }
.feature-icon {
  width: 48px; height: 48px; background: var(--accent-gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--base-purple);
}
.feature-icon svg {
  width: 24px; height: 24px;
}
.feature-card h3 {
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 10px; color: var(--title-color); font-size: 26px;
}
.feature-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--secondary-text); font-size: 16px; line-height: 1.7;
}

/* ===== MATERIAL GUIDE ===== */
.materials-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 32px;
}
.material-card { text-align: center; }
.material-card .img-placeholder {
  width: 100%; height: 200px; background: #ddd; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 0.85rem; margin-bottom: 16px;
}
.material-card h3 {
  font-family: 'Fjalla One', sans-serif; color: var(--title-color);
}
.material-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: block;
}



/* ===== SECTION HEADER BOXES (hanging down) ===== */
.section-header-box {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 0 0 8px 8px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: max(24px, calc((100% - 1200px) / 2 + 24px));
  z-index: 2;
}
.section-header-box.purple {
  background: var(--base-purple);
  color: var(--base-yellow);
}
.section-header-box.green {
  background: var(--accent-green);
  color: var(--base-yellow);
}
.section-header-box.yellow {
  background: var(--base-yellow);
  color: var(--base-purple);
}

/* ===== WHAT WE OFFER (purple overlay) ===== */
.offer-section {
  background: rgba(52, 25, 52, 0.5);
  position: relative;
  overflow: hidden;
  color: var(--base-yellow);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}
.offer-section .offer-text .lead {
  font-family: 'Fjalla One', sans-serif;
  font-size: 40px;
  line-height: 1.25;
  color: var(--base-yellow);
  margin-bottom: 32px;
}
.offer-section .btn-learn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--base-yellow);
  color: var(--base-purple);
  border: none;
}
.offer-section .btn-learn {
  position: relative;
  overflow: hidden;
}
.offer-section .btn-learn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--base-purple);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 50px;
}
.offer-section .btn-learn:hover::before {
  opacity: 0.2;
}

/* ===== WHY CHOOSE (green overlay) ===== */
.why-section {
  background: linear-gradient(rgba(34, 51, 24, 0.90), rgba(34, 51, 24, 0.90)),
              url('/images/Why Choose Tiger Labs SG_replacement.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.why-section .feature-card h3 {
  color: var(--base-yellow);
}
.why-section .feature-card p {
  color: rgba(244, 188, 52, 0.9);
}
.why-section .feature-icon {
  background: var(--accent-green);
  color: var(--base-yellow);
}

/* ===== MATERIAL GUIDE ===== */
.materials-section {
  background: var(--base-yellow);
  position: relative;
  padding-top: 80px;
}
.materials-section .btn-view {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
  background: var(--base-purple); color: var(--base-yellow);
}
.materials-section .btn-view:hover {
  background: var(--secondary-bg); color: var(--base-purple);
}

/* ===== GALLERY SLIDER ===== */
.gallery-section { overflow: hidden; background: var(--secondary-bg); }
.slider-wrapper { position: relative; }
.slider {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 16px;
  scrollbar-width: thin; scrollbar-color: var(--base-yellow) transparent;
}
.slider::-webkit-scrollbar { height: 6px; }
.slider::-webkit-scrollbar-thumb { background: var(--base-yellow); border-radius: 3px; }
.slide {
  flex: 0 0 260px; scroll-snap-align: start;
}
.slide img, .slide video {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
  display: block;
}

.slide .img-placeholder {
  width: 260px; height: 180px; background: #ddd; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 0.8rem; margin-bottom: 10px;
}
.slide span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: var(--title-color);
}
.slider-arrows {
  display: flex; justify-content: center; gap: 16px; margin-top: 24px;
}
.slider-arrows button {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--base-purple); cursor: pointer; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--base-yellow); font-weight: 400;
  transition: all 0.2s;
}
.slider-arrows button:hover {
  background: var(--base-yellow); color: var(--base-purple);
}

/* ===== FAQ ===== */
.faq-section { background: var(--base-yellow); }
.faq-item {
  border-bottom: 1px solid var(--lines);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  font-family: 'Fjalla One', sans-serif; font-size: 1.1rem;
  color: var(--title-color); display: flex;
  justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--accent-green);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 0 24px; color: var(--secondary-text); line-height: 1.7;
  max-width: 800px; font-family: 'Source Sans 3', sans-serif;
}

/* ===== REVIEWS ===== */
.reviews-section { padding: 0; background: transparent; text-align: center; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h4 {
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 16px; color: var(--title-color);
}
.contact-info p {
  margin-bottom: 12px; color: var(--body-color);
  font-family: 'Source Sans 3', sans-serif;
}
.contact-info a { color: var(--body-color); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-form label {
  display: block; margin-bottom: 6px; font-weight: 600;
  font-size: 0.95rem; font-family: 'Source Sans 3', sans-serif;
  color: var(--body-color);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px; border: 1px solid var(--lines);
  border-radius: var(--radius); margin-bottom: 20px; font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif; background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent-green);
}
.contact-form .hint {
  font-size: 0.85rem; color: var(--secondary-text);
  margin-top: -16px; margin-bottom: 20px;
}

/* Form status messages */
.form-status {
  padding: 16px 20px; border-radius: var(--radius); margin-top: 16px;
  font-weight: 400; font-family: 'Source Sans 3', sans-serif; font-size: 1rem;
  text-align: center; display: none;
}
.form-status.success {
  display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7;
}
.form-status.error {
  display: block; background: #ffebee; color: #c62828; border: 1px solid #ef9a9a;
}

.map-section {
  width: 100%; height: 400px;
  background: #1a1a1a;
  overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== MATERIALS PAGE ===== */
.materials-page { background: var(--base-yellow); }
.material-category {
  background: var(--secondary-bg); padding: 32px; border-radius: var(--radius);
  margin-bottom: 24px;
}
.material-category h5 {
  font-family: 'Fjalla One', sans-serif;
  color: var(--title-color); margin-bottom: 16px;
}
.material-entry {
  border-bottom: 1px solid var(--lines); padding: 20px 0;
}
.material-entry:last-child { border-bottom: none; }
.material-entry h5 {
  font-family: 'Fjalla One', sans-serif;
  color: var(--title-color); margin-bottom: 8px;
}
.material-entry p {
  font-family: 'Source Sans 3', sans-serif; color: var(--secondary-text);
  font-size: 16px; line-height: 1.6;
}
.material-entry .read-more {
  display: inline-block; margin-top: 8px;
  color: var(--accent-green); font-weight: 600;
  font-size: 0.9rem; cursor: pointer;
}

/* ===== BLOG ===== */
.blog-list { display: grid; gap: 24px; margin-top: 48px; }
.blog-card {
  display: flex; gap: 24px; padding: 24px; background: var(--secondary-bg);
  border-radius: var(--radius); text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.blog-card .date {
  min-width: 100px; color: var(--accent-green); font-weight: 600;
  font-size: 0.9rem; font-family: 'Source Sans 3', sans-serif;
}
.blog-card h3 {
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 6px; color: var(--title-color);
}
.blog-card p {
  color: var(--secondary-text); font-size: 0.95rem;
  font-family: 'Source Sans 3', sans-serif;
}

/* Blog post */
.blog-post {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  color: var(--base-purple);
  background: var(--secondary-bg);
  border-radius: var(--radius);
}
.blog-post a {
  color: var(--base-purple);
  text-decoration: underline;
}
.blog-post a:hover {
  text-decoration: none;
}
.blog-post h2 {
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 12px; color: var(--title-color);
  font-size: 40px;
}
.blog-post .meta {
  color: var(--secondary-text); margin-bottom: 32px;
  font-size: 0.95rem; font-family: 'Source Sans 3', sans-serif;
}
.blog-post h2 {
  font-family: 'Fjalla One', sans-serif;
  margin: 32px 0 16px; color: var(--title-color);
}
.blog-post h3 {
  font-family: 'Fjalla One', sans-serif;
  margin: 24px 0 12px; color: var(--title-color);
}
.blog-post p { margin-bottom: 16px; font-family: 'Source Sans 3', sans-serif; }
.blog-post ul, .blog-post ol { margin: 16px 0 16px 24px; }
.blog-post li { margin-bottom: 8px; }
.blog-post blockquote {
  border-left: 4px solid var(--accent-green); padding-left: 16px;
  color: var(--secondary-text); font-style: italic; margin: 20px 0;
}
.blog-post table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 0.95rem; font-family: 'Source Sans 3', sans-serif;
}
.blog-post th, .blog-post td {
  border: 1px solid var(--lines); padding: 10px 12px; text-align: left;
}
.blog-post th { background: var(--secondary-bg); font-weight: 600; }
.blog-post img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin: 16px 0;
}
.blog-post p:has(> a[href][target]) {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-top: -8px;
  margin-bottom: 16px;
}


/* ===== SHARE BAR ===== */
.share-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lines);
}
.share-bar span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-right: 8px;
}
.share-bar a,
.share-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--base-yellow);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.share-bar a:hover,
.share-bar button:hover {
  background: var(--base-purple);
}
.share-bar a:hover svg path,
.share-bar button:hover svg path,
.share-bar a:hover svg line,
.share-bar button:hover svg line,
.share-bar a:hover svg rect,
.share-bar button:hover svg rect,
.share-bar a:hover svg circle,
.share-bar button:hover svg circle {
  stroke: var(--base-yellow);
}
.share-bar a svg,
.share-bar button svg {
  width: 18px;
  height: 18px;
}
.share-bar a svg path,
.share-bar button svg path,
.share-bar a svg line,
.share-bar button svg line,
.share-bar a svg rect,
.share-bar button svg rect,
.share-bar a svg circle,
.share-bar button svg circle {
  stroke: var(--base-purple);
}
.share-bar .copy-toast {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--accent-green);
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: 4px;
}
.share-bar .copy-toast.show {
  opacity: 1;
}

/* ===== 404 ===== */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--base-yellow);
}
.error-page h1 {
  font-family: 'Fjalla One', sans-serif;
  color: var(--base-purple); margin-bottom: 16px;
}
.error-page p {
  font-family: 'Source Sans 3', sans-serif; color: var(--body-color);
  font-size: 1.2rem; margin-bottom: 32px;
}

/* ===== PRIVACY POLICY ===== */
.privacy-page { background: var(--secondary-bg); padding: 60px 0; }
.privacy-page h2 {
  font-family: 'Fjalla One', sans-serif;
  color: var(--title-color); margin: 40px 0 16px;
  border-left: 4px solid var(--accent-green); padding-left: 16px;
}
.privacy-page h3 {
  font-family: 'Fjalla One', sans-serif;
  color: var(--title-color); margin: 24px 0 12px;
}
.privacy-page p, .privacy-page li {
  font-family: 'Source Sans 3', sans-serif; color: var(--body-color);
  margin-bottom: 12px; line-height: 1.7;
}
.privacy-page ul { margin-left: 24px; }

/* ===== FOOTER ===== */
footer {
  background: var(--secondary-bg); color: var(--body-color); padding: 48px 0 0;
}
footer .footer-main {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
footer h4 {
  font-family: 'Fjalla One', sans-serif; color: var(--title-color);
  margin-bottom: 16px;
}
footer a { color: var(--body-color); text-decoration: none; display: block; margin-bottom: 8px; }
footer a:hover { text-decoration: underline; }
footer .social { display: flex; gap: 16px; margin-top: 12px; }
footer .social a { display: inline; margin-bottom: 0; }
footer .social a svg { width: 24px; height: 24px; }
footer .social a svg path,
footer .social a svg circle,
footer .social a svg line,
footer .social a svg rect {
  stroke: #ffffff;
}
footer .footer-buttons { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
footer .bottom {
  border-top: 1px solid var(--lines); margin-top: 32px; padding: 24px;
  text-align: left; font-size: 0.85rem; color: var(--secondary-text);
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--base-purple); color: var(--white);
  padding: 20px 24px; z-index: 1000;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap; font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; max-width: 700px; line-height: 1.5; }
.cookie-banner a { color: var(--base-yellow); text-decoration: underline; }
.cookie-banner .cookie-buttons { display: flex; gap: 12px; }
.cookie-banner .btn-cookie {
  padding: 8px 20px; border-radius: 50px; font-weight: 400;
  font-size: 0.85rem; cursor: pointer; border: none;
  font-family: 'Source Sans 3', sans-serif;
}
.cookie-banner .btn-accept {
  background: var(--accent-green); color: var(--white);
}
.cookie-banner .btn-accept:hover {
  background: var(--base-yellow); color: var(--base-purple);
}
.cookie-banner .btn-reject {
  background: transparent; color: var(--white);
  border: 1px solid var(--white);
}
.cookie-banner .btn-reject:hover {
  background: var(--white); color: var(--base-purple);
}
.cookie-banner.hidden { display: none; }

/* ===== ABOUT CARD ===== */
.about-card {
  background: var(--secondary-bg);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.about-card:last-child {
  margin-bottom: 0;
}
.about-card h3 {
  line-height: 1.6;
}

/* ===== VALUE CARD ===== */
.value-card {
  background: var(--secondary-bg);
  padding: 24px;
  border-radius: var(--radius);
}
.value-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  background: var(--base-purple);
  position: relative;
  padding: 80px 0;
}
.mission-section h2 {
  color: var(--base-yellow);
  margin-bottom: 20px;
  line-height: 1.3;
}
.mission-section .p2 {
  color: rgba(244, 188, 52, 0.9);
  max-width: 700px;
  line-height: 1.7;
}

/* ===== CORE VALUES SECTION ===== */
.values-section {
  background: var(--base-yellow);
  position: relative;
  padding: 80px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav ul {
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 0;
  }
  nav a { padding: 8px 12px; font-size: 15px; }
}

/* ===== GRID LAYOUTS ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== INFO CARD (contact page) ===== */
.info-card {
  background: var(--secondary-bg);
  padding: 24px;
  border-radius: var(--radius);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== ABOUT CARD ===== */
.about-card {
  background: var(--secondary-bg);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.about-card:last-child {
  margin-bottom: 0;
}
.about-card h3 {
  line-height: 1.6;
}

/* ===== VALUE CARD ===== */
.value-card {
  background: var(--secondary-bg);
  padding: 24px;
  border-radius: var(--radius);
}
.value-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  background: var(--base-purple);
  position: relative;
  padding: 80px 0;
}
.mission-section h2 {
  color: var(--base-yellow);
  margin-bottom: 20px;
  line-height: 1.3;
}
.mission-section .p2 {
  color: rgba(244, 188, 52, 0.9);
  max-width: 700px;
  line-height: 1.7;
}

/* ===== CORE VALUES SECTION ===== */
.values-section {
  background: var(--base-yellow);
  position: relative;
  padding: 80px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }

  header .container { height: 72px; }
  .menu-toggle { display: flex; }
  nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--base-yellow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(100,66,52,0.1);
  }
  nav.open { max-height: 400px; }
  nav ul {
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    padding: 16px 24px;
    gap: 4px;
  }
  nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .logo-svg { height: 40px; }
  .logo-title { font-size: 20px; }
  .logo-tagline { font-size: 14px; }

.hero {
    background-size: cover;
    background-position: center top;
    min-height: auto;
    padding: 80px 0 80px;
  }
  .hero-content {
    margin-bottom: 48px;
  }
  .hero-stats {
    margin-top: 0;
    padding-top: 0;
  }
  .hero h1 { font-size: 48px; }
  .hero .subtitle { font-size: 20px; }
  .hero-stats { gap: 32px; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-media {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto;
    right: auto;
  }
  .offer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .offer-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .materials-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer .footer-main { grid-template-columns: 1fr; }

  .blog-card { flex-direction: column; gap: 12px; }

  .services-grid { grid-template-columns: 1fr !important; }
  .materials-grid { grid-template-columns: 1fr !important; }
  .company-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  .contact-form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .blog-post {
    padding: 24px;
    margin: 24px auto;
  }
}
