/* ===================================
   SWISHGLEE - GRADIENT MODERN STYLES
   Design Style: Modern with gradient elements
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FF6B35 0%, #C43D0F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #004E89;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #004E89;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2d3748;
}

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

a:hover {
  color: #C43D0F;
}

ul {
  list-style: none;
}

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

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

/* HEADER & NAVIGATION */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #FF6B35, #F7B801, #004E89);
  border-image-slice: 1;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #004E89;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B35, #F7B801);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover::after {
  width: 80%;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 184, 1, 0.1));
  color: #C43D0F;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #004E89 0%, #003366 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: white;
  color: #004E89;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(247, 184, 1, 0.3));
  border-left-color: #F7B801;
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 184, 1, 0.05) 100%);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 78, 137, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #004E89;
  margin-bottom: 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #C43D0F 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: white;
  color: #004E89;
  border: 2px solid #004E89;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #004E89 0%, #003366 100%);
  color: white;
  transform: translateY(-2px);
}

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* FLEXBOX GRIDS */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.stats-grid,
.formats-grid,
.team-grid,
.principles-grid,
.posts-grid,
.contact-grid,
.team-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* BENEFIT ITEMS */
.benefit-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border-color: #FF6B35;
}

.benefit-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  color: #2d3748;
}

/* SERVICE CARDS */
.service-card,
.format-card,
.team-member,
.post-card,
.contact-option,
.contact-person {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.service-card::before,
.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #F7B801, #004E89);
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.format-card:hover,
.team-member:hover,
.post-card:hover,
.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: #FF6B35;
}

.service-card h3,
.format-card h3,
.team-member h3,
.post-card h3 {
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #004E89;
  margin: 16px 0;
}

.role {
  font-size: 14px;
  font-weight: 600;
  color: #F7B801;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.05) 0%, rgba(247, 184, 1, 0.05) 100%);
  padding: 60px 20px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F7B801;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card p:first-child {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #004E89;
  font-size: 14px;
  margin: 0;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #004E89 0%, #003366 100%);
  padding: 60px 20px;
  color: white;
}

.stats h2 {
  color: white;
  text-align: center;
}

.stat-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.stat-item h3 {
  font-size: 48px;
  color: #F7B801;
  margin-bottom: 8px;
}

.stat-item p {
  color: white;
  font-size: 16px;
  margin: 0;
}

/* STEPS */
.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 184, 1, 0.1) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 24px;
}

.urgency,
.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #F7B801, #FDD835);
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(247, 184, 1, 0.3);
}

/* FAQ */
.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF6B35;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #004E89;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2d3748;
  margin: 0;
}

/* LEGAL PAGES */
.legal-page {
  background: white;
  padding: 60px 20px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #FF6B35, #F7B801);
  border-image-slice: 1;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  color: #FF6B35;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
  color: #2d3748;
}

/* BLOG */
.categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  padding: 10px 24px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #004E89;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  color: white;
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.featured-post {
  background: linear-gradient(135deg, #004E89 0%, #003366 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 24px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #F7B801;
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.featured-post h2 {
  color: white;
  font-size: 36px;
}

.featured-post p {
  color: rgba(255, 255, 255, 0.9);
}

.meta {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(247, 184, 1, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 24px;
}

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

.newsletter-benefits p {
  color: #004E89;
  font-weight: 600;
}

.subscriber-count {
  color: #718096;
  font-style: italic;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 24px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #F7B801;
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #F7B801;
  transform: translateX(5px);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #FF6B35, #F7B801, #004E89);
  border-image-slice: 1;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1 1 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  color: white;
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-reject:hover {
  background: white;
  color: #1a1a1a;
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #004E89;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: rgba(0, 78, 137, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #FF6B35;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e0;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* CONTACT & LOCATION */
.opening-hours ul {
  list-style: none;
  max-width: 400px;
  margin: 24px auto;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: white;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-info {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.location-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* THANK YOU PAGE */
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #FF6B35, #C43D0F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.suggestion {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-single blockquote {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid #F7B801;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 40px auto;
}

.testimonial-single blockquote p {
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-single cite {
  display: block;
  font-weight: 600;
  color: #004E89;
  font-style: normal;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Hero */
  .hero {
    padding: 40px 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Grids - stack on mobile */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .formats-grid,
  .team-grid,
  .principles-grid,
  .posts-grid,
  .contact-grid,
  .team-contacts-grid,
  .suggestions-grid {
    flex-direction: column;
  }

  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .stat-item,
  .format-card,
  .team-member,
  .post-card,
  .contact-option,
  .contact-person,
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 100%;
  }

  /* Stats */
  .stat-item h3 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  .mobile-menu {
    width: 90%;
  }

  .price {
    font-size: 24px;
  }

  .featured-post h2 {
    font-size: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none !important;
  }
}