/* =================================================================
   DAYLE PITO - SOFT PASTEL EVENT PLANNING WEBSITE
   Design Style: Soft Pastel - Dreamy, Gentle, Romantic
   ================================================================= */

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

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

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #5a4a6a;
  background: linear-gradient(to bottom, #fef5f7 0%, #fef9fb 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   TYPOGRAPHY - SOFT & DREAMY
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #7d6b8f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #9b8aad;
  text-shadow: 2px 2px 4px rgba(255, 192, 203, 0.2);
}

h2 {
  font-size: 32px;
  color: #8a7a9a;
}

h3 {
  font-size: 24px;
  color: #7d6b8f;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #6a5a7a;
}

strong {
  color: #7d6b8f;
  font-weight: 600;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

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

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

/* =================================================================
   HEADER & NAVIGATION - SOFT PASTEL STYLE
   ================================================================= */

header {
  background: linear-gradient(135deg, #fef5f7 0%, #f9f0f7 100%);
  padding: 24px 0;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid rgba(255, 192, 203, 0.3);
}

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

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(255, 192, 203, 0.3));
}

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

.main-nav a {
  color: #8a7a9a;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  color: #c89fc4;
  background: rgba(255, 192, 203, 0.15);
}

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

/* =================================================================
   MOBILE MENU - DREAMY SLIDE-IN
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(255, 192, 203, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #fef5f7 0%, #f9f0f7 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(255, 192, 203, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: #8a7a9a;
  padding: 16px;
  border-radius: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 192, 203, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.3), rgba(212, 165, 196, 0.3));
  border-color: #ffc0cb;
  transform: translateX(8px);
  color: #7d6b8f;
}

/* =================================================================
   HERO SECTION - DREAMY SOFT PASTEL
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #fef5f7 0%, #f9f0f7 50%, #fef9fb 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.1) 0%, transparent 70%);
  animation: dreamyFloat 20s ease-in-out infinite;
}

@keyframes dreamyFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(5deg); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #9b8aad, #c89fc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #8a7a9a;
  margin-bottom: 32px;
  line-height: 1.8;
}

.breadcrumb {
  font-size: 14px;
  color: #b4a4c4;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #c89fc4;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #9b8aad;
}

/* =================================================================
   BUTTONS - SOFT PASTEL STYLE
   ================================================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  border-color: #ffc0cb;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb3c1, #c89fc4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #c89fc4;
  border: 2px solid #ffc0cb;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(212, 165, 196, 0.2));
  border-color: #c89fc4;
  transform: translateY(-3px);
}

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

/* =================================================================
   CARDS & CONTENT SECTIONS - PASTEL DREAMY
   ================================================================= */

.value-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.portfolio-grid,
.approach-grid,
.contact-grid,
.actions-grid,
.steps-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card,
.service-card,
.stat,
.testimonial-card,
.portfolio-case,
.approach-item,
.contact-option,
.action,
.step,
.card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 245, 247, 0.9));
  padding: 32px;
  border-radius: 20px;
  border: 2px solid rgba(255, 192, 203, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.15);
}

.value-card:hover,
.service-card:hover,
.portfolio-case:hover,
.approach-item:hover,
.action:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 192, 203, 0.3);
  border-color: #ffc0cb;
}

.value-card h3,
.service-card h3,
.approach-item h3 {
  color: #9b8aad;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p,
.value-card p {
  color: #7d6b8f;
}

/* =================================================================
   TESTIMONIALS - HIGH CONTRAST FOR READABILITY
   ================================================================= */

.testimonials {
  background: linear-gradient(135deg, #f9f0f7 0%, #fef5f7 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: white;
  border: 2px solid #ffc0cb;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 192, 203, 0.2);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: #7d6b8f;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
  font-style: normal;
}

.rating {
  text-align: center;
  font-weight: 600;
  color: #c89fc4;
  font-size: 18px;
  margin-top: 32px;
}

/* =================================================================
   STATS BANNER - PASTEL GRADIENT
   ================================================================= */

.stats-banner {
  background: linear-gradient(135deg, #ffc0cb 0%, #d4a5c4 100%);
  padding: 60px 20px;
  text-align: center;
}

.stats-banner h2 {
  color: white;
}

.stat {
  background: rgba(255, 255, 255, 0.95);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

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

.stat p {
  color: #7d6b8f;
  font-size: 16px;
}

/* =================================================================
   PROCESS STEPS - NUMBERED DREAMY DESIGN
   ================================================================= */

.process-steps,
.process-steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 245, 247, 0.9));
  padding: 32px;
  border-radius: 20px;
  border-left: 5px solid #ffc0cb;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.15);
}

.step-number {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
}

.duration,
.deliverable {
  font-size: 14px;
  color: #b4a4c4;
  font-style: italic;
}

/* =================================================================
   SERVICES DETAILED
   ================================================================= */

.service-detail {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 245, 247, 0.95));
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  border: 2px solid rgba(255, 192, 203, 0.3);
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.15);
}

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

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #7d6b8f;
  position: relative;
  padding-left: 8px;
}

.service-detail ul li::before {
  content: '✓';
  color: #ffc0cb;
  font-weight: 700;
  margin-right: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #c89fc4;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 192, 203, 0.1);
  border-radius: 12px;
  text-align: center;
}

/* =================================================================
   PORTFOLIO CASES - SOFT CARDS
   ================================================================= */

.portfolio-case {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
}

.case-category {
  display: inline-block;
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* =================================================================
   FAQ SECTION - ACCORDION STYLE
   ================================================================= */

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 192, 203, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ffc0cb;
  box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
}

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

.faq-item p {
  color: #7d6b8f;
}

/* =================================================================
   CONTACT FORM - DREAMY SOFT DESIGN
   ================================================================= */

.form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 245, 247, 0.95));
  padding: 48px;
  border-radius: 20px;
  border: 2px solid rgba(255, 192, 203, 0.3);
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 6px 25px rgba(255, 192, 203, 0.2);
}

.form-note {
  color: #8a7a9a;
  margin-bottom: 32px;
  text-align: center;
  font-style: italic;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  color: #7d6b8f;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.field-placeholder {
  background: white;
  border: 2px solid rgba(255, 192, 203, 0.4);
  padding: 16px;
  border-radius: 12px;
  color: #b4a4c4;
  min-height: 50px;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #ffc0cb;
  box-shadow: 0 2px 10px rgba(255, 192, 203, 0.2);
}

.field-group.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.field-group.consent label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.submit-note {
  margin-top: 24px;
  font-size: 14px;
  color: #b4a4c4;
  text-align: center;
}

.submit-note a {
  color: #c89fc4;
  text-decoration: underline;
}

/* =================================================================
   LEGAL CONTENT - READABLE TYPOGRAPHY
   ================================================================= */

.legal-content {
  max-width: 900px;
  margin: 40px auto;
}

.legal-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 24px;
  border-left: 4px solid #ffc0cb;
  box-shadow: 0 2px 10px rgba(255, 192, 203, 0.1);
}

.legal-section h2 {
  color: #9b8aad;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #2C3E50;
  line-height: 1.8;
}

.legal-section a {
  color: #c89fc4;
  text-decoration: underline;
}

/* =================================================================
   THANK YOU / SUCCESS PAGE
   ================================================================= */

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffc0cb, #d4a5c4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 25px rgba(255, 192, 203, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =================================================================
   CTA SECTIONS - PROMINENT SOFT PASTEL
   ================================================================= */

.cta-section {
  background: linear-gradient(135deg, #ffc0cb 0%, #d4a5c4 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 25px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(255, 192, 203, 0.3);
}

.cta-section h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: white;
  color: #c89fc4;
  border-color: white;
}

.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.trust-badge,
.trust-element,
.availability-note,
.guarantee {
  font-size: 14px;
  color: #2C3E50 !important;
  margin-top: 24px;
  font-style: italic;
}
.trust-badge {
  color: #2C3E50 !important;
}

/* =================================================================
   FOOTER - SOFT PASTEL STYLE
   ================================================================= */

footer {
  background: linear-gradient(135deg, #7d6b8f 0%, #9b8aad 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 220px;
}

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

footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

footer a:hover {
  color: #ffc0cb;
  transform: translateX(4px);
}

.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;
}

/* =================================================================
   COOKIE CONSENT BANNER - SOFT PASTEL DREAMY
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(254, 245, 247, 0.98), rgba(249, 240, 247, 0.98));
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(255, 192, 203, 0.3);
  z-index: 999;
  border-top: 3px solid #ffc0cb;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-content {
  flex: 1 1 300px;
  color: #7d6b8f;
}

.cookie-content h3 {
  color: #9b8aad;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-content p {
  font-size: 14px;
  color: #8a7a9a;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(125, 107, 143, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 24px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #fef5f7, #f9f0f7);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #ffc0cb;
  box-shadow: 0 10px 40px rgba(255, 192, 203, 0.4);
}

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

.cookie-category {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 192, 203, 0.3);
}

.cookie-category h3 {
  color: #8a7a9a;
  margin-bottom: 8px;
  font-size: 16px;
}

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

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

/* =================================================================
   TEXT-IMAGE SECTIONS - FLEXBOX ALIGNMENT
   ================================================================= */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* =================================================================
   SECTION HEADERS & SUBTITLES
   ================================================================= */

.section-subtitle {
  text-align: center;
  color: #8a7a9a;
  font-size: 18px;
  margin-bottom: 32px;
  font-style: italic;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.text-link {
  color: #c89fc4;
  text-decoration: underline;
  font-weight: 600;
  display: inline-block;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: #9b8aad;
  transform: translateX(4px);
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  /* Section Padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 20px;
  }

  /* Grid Adjustments */
  .value-card,
  .service-card,
  .stat,
  .testimonial-card,
  .portfolio-case,
  .approach-item,
  .contact-option,
  .action,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }

  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

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

  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Form Container */
  .form-container {
    padding: 32px 24px;
  }

  /* Process Steps */
  .step-number {
    position: static;
    margin-bottom: 16px;
    align-self: flex-start;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .portfolio-case,
  .approach-item {
    flex: 1 1 calc(50% - 24px);
  }

  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

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

.value-card,
.service-card,
.testimonial-card,
.portfolio-case {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
  outline: 3px solid #ffc0cb;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.note {
  font-size: 14px;
  color: #b4a4c4;
  font-style: italic;
}

.response-note {
  margin-top: 16px;
  font-size: 14px;
  color: #8a7a9a;
  text-align: center;
}

/* =================================================================
   END OF STYLESHEET
   ================================================================= */