/* ============================================
   POSITISTER - VIBRANT ENERGETIC DESIGN
   Modern, Bold, High-Energy Polish Traditions
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #C1272D 0%, #8B1A1F 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #F4E8D8;
  transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #C1272D;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(193, 39, 45, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B1A1F;
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #C1272D 0%, #8B1A1F 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #C1272D;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid #F4E8D8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDC830 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: slideDown 0.8s ease;
}

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

.hero-subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* BREADCRUMB */
.breadcrumb {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #C1272D 0%, #E63946 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B1A1F 0%, #C1272D 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193, 39, 45, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #2B5F3B 0%, #3A7D4E 100%);
  color: #ffffff;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1F4529 0%, #2B5F3B 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 95, 59, 0.4);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

/* INTRODUCTION */
.introduction {
  background: #ffffff;
  text-align: center;
}

.introduction h2 {
  color: #C1272D;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.trust-badges span {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* SERVICES SECTION */
.services {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  text-align: center;
}

.services h2 {
  color: #C1272D;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FDC830 100%);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(193, 39, 45, 0.2);
}

.service-card:hover::before {
  height: 8px;
}

.service-card h3 {
  color: #C1272D;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #333;
  margin-bottom: 16px;
}

.service-card .price {
  color: #2B5F3B;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}

/* FEATURES SECTION */
.features {
  background: #ffffff;
  text-align: center;
}

.features h2 {
  color: #C1272D;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.feature {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  padding: 24px;
}

.feature h3 {
  color: #FF6B35;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature p {
  color: #333;
}

/* REGIONS SECTION */
.regions {
  background: linear-gradient(135deg, #2B5F3B 0%, #3A7D4E 100%);
  text-align: center;
  color: #ffffff;
}

.regions h2,
.regions .section-subtitle {
  color: #ffffff;
}

.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.region-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid #FDC830;
}

.region-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(253, 200, 48, 0.4);
}

.region-card h3 {
  color: #C1272D;
  margin-bottom: 8px;
  font-size: 24px;
}

.region-card p {
  color: #333;
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #FFF5E6 0%, #F4E8D8 100%);
  text-align: center;
}

.testimonials h2 {
  color: #C1272D;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  text-align: left;
  border-left: 6px solid #FF6B35;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.testimonial-card p {
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  color: #C1272D;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0;
  font-size: 15px;
}

/* CTA BANNER */
.cta-banner,
.cta {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-banner h2,
.cta h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 260px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #FF6B35;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FF6B35;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #444;
}

/* MISSION & STORY */
.mission,
.story,
.achievements {
  background: #ffffff;
}

.mission h2,
.story h2,
.achievements h2 {
  color: #C1272D;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.values-list span {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.milestone {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #FF6B35;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.milestone strong {
  color: #C1272D;
  font-size: 20px;
}

/* TEAM */
.team {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  text-align: center;
}

.team h2 {
  color: #C1272D;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 480px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.team-member h3 {
  color: #C1272D;
  margin-bottom: 8px;
}

.team-member .role {
  color: #FF6B35;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.team-member p {
  color: #333;
}

/* STATS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.stat .number {
  display: block;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat .label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICE DETAIL */
.service-detail {
  background: #ffffff;
  padding: 60px 20px;
  border-bottom: 3px solid #F4E8D8;
}

.service-header {
  margin-bottom: 32px;
}

.service-number {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-detail h2 {
  color: #C1272D;
  margin-bottom: 16px;
}

.tagline {
  color: #666;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
}

.service-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.service-info .price {
  color: #2B5F3B;
  font-size: 28px;
  font-weight: 700;
}

.service-info .duration {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

.service-detail ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

.service-detail li {
  color: #333;
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #FF6B35;
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
}

.faq h2 {
  color: #C1272D;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #FF6B35;
}

.faq-item h3 {
  color: #C1272D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #333;
  margin-bottom: 0;
}

/* REGION DETAIL */
.region-detail {
  background: #ffffff;
  padding: 60px 20px;
  border-bottom: 3px solid #F4E8D8;
}

.region-detail h2 {
  color: #C1272D;
  margin-bottom: 16px;
}

.region-detail h3 {
  color: #FF6B35;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* GALLERY */
.gallery-intro,
.gallery-categories,
.featured-collections,
.regional-galleries,
.photo-stories {
  background: #ffffff;
}

.gallery-intro h2,
.featured-collections h2,
.regional-galleries h2,
.photo-stories h2 {
  color: #C1272D;
  text-align: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stats span {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.category-btn {
  background: #ffffff;
  color: #333;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid #FF6B35;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.collection-card {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.collection-card h3 {
  color: #C1272D;
  margin-bottom: 12px;
}

.collection-card p {
  color: #333;
  margin-bottom: 16px;
}

.collection-card .count {
  color: #2B5F3B;
  font-weight: 700;
}

.regions-list {
  margin-top: 40px;
}

.region-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-left: 4px solid #FF6B35;
  transition: all 0.3s ease;
}

.region-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

.region-item h3 {
  color: #C1272D;
  margin-bottom: 0;
}

.region-item span {
  color: #2B5F3B;
  font-weight: 700;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.story-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #F4E8D8 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 550px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #2B5F3B;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(43, 95, 59, 0.2);
}

.story-card h3 {
  color: #C1272D;
  margin-bottom: 12px;
}

.story-card p {
  color: #333;
  margin-bottom: 16px;
}

.story-card span {
  color: #2B5F3B;
  font-weight: 700;
}

.photo-usage {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  text-align: center;
}

.photo-usage h2 {
  color: #C1272D;
}

/* BLOG */
.blog-intro,
.blog-categories,
.featured-posts,
.popular-posts,
.article-series {
  background: #ffffff;
}

.blog-intro h2,
.featured-posts h2,
.popular-posts h2,
.article-series h2 {
  color: #C1272D;
  text-align: center;
}

.authors {
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.post-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.post-card .category {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 0 20px;
  border-radius: 50px;
}

.post-card h3 {
  color: #C1272D;
  padding: 20px 20px 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.post-card p {
  color: #333;
  padding: 0 20px;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 20px 20px;
  color: #666;
  font-size: 13px;
}

.popular-list {
  margin-top: 40px;
}

.popular-item {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #2B5F3B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.popular-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(43, 95, 59, 0.2);
}

.popular-item h3 {
  color: #C1272D;
  margin-bottom: 0;
  font-size: 18px;
}

.series-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.series-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #F4E8D8 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #FF6B35;
}

.series-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.series-card h3 {
  color: #C1272D;
  margin-bottom: 12px;
}

.series-card p {
  color: #333;
  margin-bottom: 16px;
}

.series-card .count {
  color: #2B5F3B;
  font-weight: 700;
  font-size: 14px;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  color: #ffffff;
  margin-bottom: 32px;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.newsletter-benefits span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
}

/* CONTACT */
.contact-methods {
  background: #ffffff;
  text-align: center;
}

.contact-methods h2 {
  color: #C1272D;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
}

.method-card h3 {
  color: #C1272D;
  margin-bottom: 16px;
}

.method-card .contact-value {
  color: #2B5F3B;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.method-card .contact-note {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.contact-form-section {
  background: linear-gradient(135deg, #FFF5E6 0%, #F4E8D8 100%);
  text-align: center;
}

.contact-form-section h2 {
  color: #C1272D;
}

.form-note {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  max-width: 800px;
  margin: 32px auto 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FF6B35;
}

.contact-info-box {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.contact-info-box p {
  color: #333;
  margin-bottom: 8px;
}

.office-location,
.faq-contact,
.team-contact,
.partnership {
  background: #ffffff;
}

.office-location h2,
.faq-contact h2,
.team-contact h2,
.partnership h2 {
  color: #C1272D;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.team-contact-card {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #2B5F3B;
}

.team-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(43, 95, 59, 0.2);
}

.team-contact-card h3 {
  color: #C1272D;
  margin-bottom: 8px;
}

.team-contact-card .role {
  color: #FF6B35;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-contact-card p {
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

/* LEGAL PAGES */
.legal-content {
  background: #ffffff;
}

.legal-content h2 {
  color: #C1272D;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #FF6B35;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #333;
}

.legal-content a {
  color: #C1272D;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #FF6B35;
}

.last-updated {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
}

.success-icon {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.2);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #ffffff;
}

.confirmation {
  background: #ffffff;
  text-align: center;
}

.confirmation h2 {
  color: #C1272D;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #F4E8D8 0%, #FFF5E6 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step p {
  color: #333;
  margin-bottom: 0;
}

.contact-reminder {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 18px;
}

.what-next {
  background: linear-gradient(135deg, #FFF5E6 0%, #F4E8D8 100%);
  text-align: center;
}

.what-next h2 {
  color: #C1272D;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #2B5F3B;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(43, 95, 59, 0.2);
}

.suggestion-card h3 {
  color: #C1272D;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #333;
  margin-bottom: 24px;
}

.testimonial {
  background: linear-gradient(135deg, #2B5F3B 0%, #3A7D4E 100%);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.testimonial .intro {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 24px;
}

.testimonial blockquote {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-left: 6px solid #FDC830;
}

.testimonial blockquote p {
  color: #1a1a1a;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial blockquote footer {
  color: #C1272D;
  font-weight: 700;
  font-style: normal;
}

.testimonial .stats {
  margin-top: 32px;
}

.testimonial .stats span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.phone-cta {
  color: #2B5F3B;
  font-size: 36px;
  font-weight: 700;
  margin: 24px 0;
}

.hours {
  color: #666;
  font-size: 16px;
  margin-bottom: 32px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner p {
  flex: 1 1 300px;
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #2B5F3B 0%, #3A7D4E 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #1F4529 0%, #2B5F3B 100%);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #FF6B35;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #F7931E;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #C1272D;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  border-radius: 12px;
  background: #F4E8D8;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #C1272D;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #333;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .services-grid,
  .features-grid,
  .regions-grid,
  .testimonials-grid,
  .team-grid,
  .stats-grid,
  .collections-grid,
  .posts-grid,
  .methods-grid,
  .team-contacts,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .region-card,
  .testimonial-card,
  .team-member,
  .collection-card,
  .post-card,
  .method-card,
  .team-contact-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Steps */
  .steps {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
  
  /* Service Info */
  .service-info {
    flex-direction: column;
    text-align: center;
  }
  
  /* Newsletter Form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .mobile-menu {
    width: 90%;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .service-number {
    font-size: 28px;
    padding: 12px 20px;
  }
  
  .phone-cta {
    font-size: 28px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* END OF STYLESHEET */