/* ============================================
   SACCHAFFLO AKADEMIE - WARM & FRIENDLY DESIGN
   Modern Educational Website with Warm Aesthetics
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  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: #2d2d2d;
  background-color: #fafafa;
  overflow-x: hidden;
}

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

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 16px;
}

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

a:hover {
  color: #d17d1a;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

strong {
  color: #2d2d2d;
  font-weight: 600;
}

blockquote {
  border-left: 4px solid #E8952A;
  padding: 16px 24px;
  margin: 24px 0;
  background: #fff8f0;
  border-radius: 8px;
  font-style: italic;
  color: #2C5F8D;
  font-size: 18px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER STYLES */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid #E8952A;
}

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

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

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

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: #fff8f0;
  color: #E8952A;
  transform: translateY(-2px);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #E8952A;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(232, 149, 42, 0.3);
}

.btn-primary:hover {
  background: #d17d1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 149, 42, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 141, 0.3);
}

.btn-outline {
  background: transparent;
  color: #E8952A;
  border: 2px solid #E8952A;
}

.btn-outline:hover {
  background: #E8952A;
  color: #ffffff;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #E8952A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 149, 42, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C5F8D;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2C5F8D;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #fff8f0;
  color: #E8952A;
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4a7ea8 100%);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #ffffff;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4a7ea8 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumb a {
  color: #ffffff;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* CARD LAYOUTS */
.course-grid,
.benefits-grid,
.advantages-grid,
.values-grid,
.pricing-grid,
.contact-grid,
.team-grid,
.action-grid,
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.course-card,
.benefit-item,
.advantage-card,
.value-card,
.pricing-card,
.contact-card,
.team-card,
.action-card,
.payment-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.course-card:hover,
.advantage-card:hover,
.value-card:hover,
.pricing-card:hover,
.contact-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(232, 149, 42, 0.2);
}

.course-card h3,
.advantage-card h3,
.value-card h3,
.pricing-card h3,
.team-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.course-card p,
.advantage-card p,
.value-card p,
.contact-card p,
.team-card p,
.action-card p,
.payment-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 12px 0;
  border-top: 2px solid #f4f4f4;
  border-bottom: 2px solid #f4f4f4;
  gap: 16px;
  flex-wrap: wrap;
}

.course-meta .price {
  color: #E8952A;
  font-weight: 700;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
}

.course-meta .duration {
  color: #666;
  font-size: 14px;
}

/* BENEFIT ITEMS */
.benefit-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #E8952A 0%, #f5a944 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item,
.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.95;
  display: block;
}

.stat-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.stat-card .stat-number {
  color: #2C5F8D;
}

.stat-card p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #f8f9fa;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #2C5F8D;
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.rating {
  color: #E8952A;
  font-size: 18px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #4a7ea8 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

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

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

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.phone-display {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.phone-display:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
  color: #ffffff;
}

/* LOCATION */
.location {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 400px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.address {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.hours {
  margin-bottom: 24px;
  padding: 16px;
  background: #fff8f0;
  border-radius: 12px;
  border-left: 4px solid #E8952A;
}

/* COURSE LISTING */
.course-listing {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.course-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.course-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(232, 149, 42, 0.2);
}

.course-details {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 2px solid #f4f4f4;
}

.course-details span {
  font-size: 14px;
  color: #666;
}

.course-details .price {
  color: #E8952A;
  font-weight: 700;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
}

/* PRICING CARDS */
.pricing-card {
  text-align: center;
}

.pricing-card .price {
  font-size: 48px;
  color: #E8952A;
  font-weight: 700;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

/* TEXT SECTIONS */
.text-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

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

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

/* FORMS */
.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: #fff8f0;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #E8952A;
  margin-bottom: 24px;
}

.form-note p {
  margin-bottom: 8px;
}

/* TIMELINE */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid #E8952A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(232, 149, 42, 0.2);
}

/* STEPS */
.method-steps,
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.step,
.step-item {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #2C5F8D;
  transition: all 0.3s ease;
}

.step:hover,
.step-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

/* LISTS */
.accreditation-list,
.guarantee-list,
.discount-list,
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 24px auto;
}

.accreditation-item,
.guarantee-item,
.discount-item,
.policy-item {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.accreditation-item:hover,
.guarantee-item:hover,
.discount-item:hover,
.policy-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(232, 149, 42, 0.15);
}

/* TABLES */
.hours-table {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 24px auto;
}

.hours-row {
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hours-row:last-child {
  border-bottom: none;
}

/* PAYMENT METHODS */
.payment-methods {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: #fff8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #666;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4a7ea8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.thank-you-content h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ffffff;
}

.thank-you-content .confirmation {
  font-size: 16px;
  margin-bottom: 32px;
  color: #ffffff;
  opacity: 0.9;
}

.urgency {
  background: rgba(232, 149, 42, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #E8952A;
  display: inline-block;
  margin-top: 16px;
}

.last-updated {
  color: #ffffff;
  opacity: 0.8;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: #2C5F8D;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-radius: 30px 30px 0 0;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

.footer-section p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E8952A;
  padding-left: 8px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  border-top: 3px solid #E8952A;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 8px;
  color: #2d2d2d;
}

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

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

#accept-cookies {
  background: #E8952A;
  color: #ffffff;
}

#accept-cookies:hover {
  background: #d17d1a;
  transform: translateY(-2px);
}

#reject-cookies {
  background: #e0e0e0;
  color: #2d2d2d;
}

#reject-cookies:hover {
  background: #d0d0d0;
}

#cookie-settings {
  background: transparent;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
}

#cookie-settings:hover {
  background: #2C5F8D;
  color: #ffffff;
}

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

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

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

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

.cookie-category h4 {
  margin-bottom: 8px;
  color: #2C5F8D;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cards */
  .course-card,
  .benefit-item,
  .advantage-card,
  .value-card,
  .pricing-card,
  .contact-card,
  .team-card,
  .action-card,
  .payment-card {
    flex: 1 1 100%;
  }
  
  .stat-item,
  .stat-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  /* CTA */
  .cta-actions {
    flex-direction: column;
  }
  
  .phone-display {
    font-size: 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.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; }

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .cta-banner,
  .btn {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}
.cta-banner .container h2, .cta-banner .container p {
    color: white;
}