/* ============================================
   KONTAK PAGE - CLEAN & SIMPLE DESIGN
   ============================================ */

/* Reset & Variables */
:root {
  --brand-gold: #D4AF37;
  --brand-gold-light: #E8D4A8;
  --brand-gold-dark: #B8941F;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-gray: #666666;
  --color-gray-light: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* ============================================
   PAGE HEADER - MODERN & ELEGANT (NO OVERFLOW)
   ============================================ */
.page-header-enhanced {
  position: relative;
  padding: 70px 0 30px !important;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  pointer-events: none;
  overflow: hidden;
}

.page-header-bg::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* Decorative Elements - Contained */
.page-header-enhanced::before {
  content: '✦';
  position: absolute;
  top: 25%;
  left: 5%;
  font-size: 1.5rem;
  color: var(--brand-gold);
  opacity: 0.2;
  animation: twinkle 3s ease-in-out infinite;
}

.page-header-enhanced::after {
  content: '✦';
  position: absolute;
  top: 35%;
  right: 5%;
  font-size: 1.2rem;
  color: var(--brand-gold);
  opacity: 0.2;
  animation: twinkle 3s ease-in-out infinite 1.5s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.15) rotate(180deg);
  }
}

.page-header-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 100%;
}

.page-title-enhanced {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease-out;
  max-width: 100%;
  word-wrap: break-word;
}

.page-title-enhanced::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 2px;
  animation: expandLine 1s ease-out 0.3s both;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 80px;
    opacity: 1;
  }
}

.text-brand-gold {
  color: var(--brand-gold);
  position: relative;
  display: inline-block;
}

.page-subtitle-enhanced {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: var(--color-gray);
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  padding: 0 24px;
}

.page-subtitle-enhanced::before,
.page-subtitle-enhanced::after {
  display: none;
}

/* ============================================
   PREVENT OVERFLOW - CRITICAL
   ============================================ */
html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

.page-content,
.contact-section-enhanced,
.container {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  overflow-x: hidden;
}

/* Mobile optimization - tighter padding */
@media (max-width: 479px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 374px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================
   ADDITIONAL DECORATIVE PARTICLES
   ============================================ */

/* ============================================
   SCROLLBAR FIX - KONTAK PAGE (OVERRIDE GLOBAL)
   ============================================ */
/* Force hide scrollbar on kontak page - highest priority */
body::-webkit-scrollbar,
html::-webkit-scrollbar,
.page-content::-webkit-scrollbar,
.contact-section-enhanced::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

body,
html,
.page-content,
.contact-section-enhanced,
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* ============================================
   CONTACT SECTION - NO OVERFLOW
   ============================================ */
.contact-section-enhanced {
  padding: 30px 0 40px !important;
  background: #ffffff;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.contact-grid-enhanced {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   MAIN CONTACT CARD - CLEAN DESIGN
   ============================================ */
.contact-main-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gold);
  z-index: 1;
}

.card-glow {
  display: none;
}

/* ============================================
   CONTACT HEADER - MODERN & CLEAN
   ============================================ */
.contact-main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-mascot-enhanced {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 10px;
  background: transparent;
  z-index: 2;
}

.contact-mascot-enhanced img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}

.mascot-status {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 11px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border: 2px solid #ffffff;
  line-height: 1;
  white-space: nowrap;
  min-width: 80px;
  z-index: 10;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.status-dot.dot-online {
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}

.status-dot.dot-slow {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
}

.status-dot.dot-offline {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
}

.contact-main-title {
  flex: 1;
  text-align: center;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.contact-main-title h2 {
  font-size: clamp(1.05rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.contact-main-title p {
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  color: var(--color-gray);
  line-height: 1.55;
  padding: 0 2px;
}

/* ============================================
   WHATSAPP BUTTON - CLEAN DESIGN
   ============================================ */
.btn-wa-enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: #25d366;
  color: #ffffff;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-wa-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.6s ease;
}

.btn-wa-enhanced:hover::before {
  left: 100%;
}

.btn-wa-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  background: #20ba5a;
}

.btn-wa-enhanced:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.15s ease;
}

.btn-wa-enhanced:active .btn-wa-label {
  opacity: 1;
}

.btn-wa-enhanced:active .btn-wa-number {
  letter-spacing: 0.6px;
}

.btn-wa-enhanced:active .btn-wa-icon {
  transform: scale(1.02);
}

.btn-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wa-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.btn-wa-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: left;
}

.btn-wa-label {
  font-size: 0.75rem;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wa-number {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wa-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-wa-enhanced:hover .btn-wa-arrow {
  transform: translateX(4px);
}

.btn-wa-enhanced:active .btn-wa-arrow {
  transform: translateX(5px);
}

.btn-wa-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2.5;
}

/* ============================================
   CONTACT DIVIDER - ELEGANT
   ============================================ */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--color-gray);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: lowercase;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-light), transparent);
}

/* ============================================
   ALTERNATIVE METHODS - MODERN CARDS
   ============================================ */
.contact-alt-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-alt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  background: #ffffff;
  border-radius: 14px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.contact-alt-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-alt-btn:hover::before {
  opacity: 1;
}

.contact-alt-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-gold);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-alt-btn:hover {
  border-color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.contact-alt-btn:hover svg {
  transform: scale(1.1);
}

.contact-alt-btn:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  transition: all 0.15s ease;
}

.contact-alt-btn:active span {
  color: var(--brand-gold-dark);
}

.contact-alt-btn:active svg {
  transform: scale(1.05);
  stroke: var(--brand-gold-dark);
}

.contact-alt-btn span {
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   INFO CARDS - PREMIUM DESIGN (NO OVERFLOW)
   ============================================ */
.contact-info-enhanced {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-card-enhanced {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  background: #ffffff;
  border-radius: 14px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.05);
  transition: left 0.6s ease;
}

.contact-info-card-enhanced:hover::before {
  left: 100%;
}

.contact-info-card-enhanced:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: var(--brand-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card-enhanced:hover .info-card-icon::after {
  opacity: 1;
}

.contact-info-card-enhanced:hover .info-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.2);
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-gold);
  transition: all 0.3s ease;
}

.contact-info-card-enhanced:hover .info-card-icon svg {
  stroke: var(--brand-gold-dark);
  transform: scale(1.1);
}

/* Online Indicator - Enhanced */
.online-indicator {
  position: relative;
}

.online-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.indicator-online::after {
  background: #25d366;
  animation: pulse-indicator 2s ease-in-out infinite;
}

.indicator-slow::after {
  background: #f59e0b;
  animation: pulse-indicator 2s ease-in-out infinite;
}

.indicator-offline::after {
  background: #ef4444;
}

@keyframes pulse-indicator {

  0%,
  100% {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 0 0 0 currentColor;
  }

  50% {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(37, 211, 102, 0.3);
  }
}

.info-card-content {
  flex: 1;
  min-width: 0;
}

.info-card-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.contact-info-card-enhanced:hover .info-card-content h3 {
  color: var(--brand-gold-dark);
}

.info-card-content p {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.45;
  transition: color 0.3s ease;
}

.contact-info-card-enhanced:hover .info-card-content p {
  color: var(--color-dark);
}

.weekend-note {
  font-size: 0.7rem !important;
  color: var(--color-gray) !important;
  font-style: italic;
  margin-top: 2px;
  display: block;
}

.status-online,
.status-slow,
.status-offline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.status-online::before,
.status-slow::before,
.status-offline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-online {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.status-online::before {
  background: #25d366;
}

.status-slow {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.status-slow::before {
  background: #f59e0b;
}

.status-offline {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.status-offline::before {
  background: #ef4444;
}

.info-card-action a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 9px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.info-card-action a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-gold);
  transform: scale(0);
  border-radius: 9px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card-action a:hover::before {
  transform: scale(1);
}

.info-card-action svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-gold);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.info-card-action a:hover {
  transform: translateX(4px) scale(1.1);
}

.info-card-action a:hover svg {
  stroke: #ffffff;
}

/* ============================================
   SOCIAL SECTION - CLEAN DESIGN
   ============================================ */
.social-section-enhanced {
  margin-top: 30px;
  padding: 28px 18px;
  background: #fafafa;
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.social-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gold);
}

.social-section-enhanced::after {
  display: none;
}

.social-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.social-header h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}

.social-header h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 2px;
}

.social-header p {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: var(--color-gray);
  margin-top: 12px;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.6;
}

.social-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.social-card-enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: #ffffff;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  user-select: none;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.social-card-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-card-enhanced:hover::before {
  opacity: 0;
}

.social-card-enhanced:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.social-card-enhanced:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
  transition: all 0.15s ease;
}

.social-card-enhanced:active .social-name {
  color: var(--brand-gold-dark);
}

.social-card-enhanced:active .social-handle {
  color: var(--color-dark);
}

.social-card-enhanced:active .social-card-icon {
  transform: scale(1.02);
}

.social-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.social-card-enhanced.instagram .social-card-icon {
  background: rgba(225, 48, 108, 0.12);
}

.social-card-enhanced.facebook .social-card-icon {
  background: rgba(24, 119, 242, 0.12);
}

.social-card-enhanced.tiktok .social-card-icon {
  background: rgba(0, 0, 0, 0.12);
}

.social-card-enhanced.youtube .social-card-icon {
  background: rgba(255, 0, 0, 0.12);
}

.social-card-enhanced:hover .social-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.social-card-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.social-card-enhanced.instagram .social-card-icon svg {
  stroke: #e1306c;
}

.social-card-enhanced.facebook .social-card-icon svg {
  stroke: #1877f2;
}

.social-card-enhanced.tiktok .social-card-icon svg {
  stroke: #000000;
}

.social-card-enhanced.youtube .social-card-icon svg {
  stroke: #ff0000;
}

.social-card-enhanced:hover .social-card-icon svg {
  transform: scale(1.1);
}

.social-card-info {
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card-enhanced:hover .social-name {
  color: var(--brand-gold);
}

.social-handle {
  display: block;
  font-size: 0.7rem;
  color: var(--color-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card-enhanced:hover .social-handle {
  color: var(--color-dark);
}

.social-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 7px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.social-card-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--brand-gold);
  stroke-width: 2.5;
  fill: none;
  transition: all 0.3s ease;
}

.social-card-enhanced:hover .social-card-arrow {
  background: var(--brand-gold);
  transform: translateX(4px) scale(1.1);
}

.social-card-enhanced:hover .social-card-arrow svg {
  stroke: #ffffff;
  stroke-width: 2.5;
}

.social-card-enhanced:active .social-card-arrow {
  transform: translateX(5px) scale(1.05);
}

/* ============================================
   ANIMATIONS - MINIMAL
   ============================================ */
.animate-fade-up {
  animation: none;
  /* Remove fade-up animation for cleaner look */
}

.pulse-animation {
  animation: none;
  /* Remove pulse animation */
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE (320px-374px)
   ============================================ */
@media (max-width: 374px) {
  .page-header-enhanced {
    padding: 60px 0 20px !important;
  }

  .page-title-enhanced {
    font-size: 1.5rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .page-subtitle-enhanced {
    font-size: 0.88rem;
    padding: 0 20px;
    margin: 8px auto 0;
    line-height: 1.5;
  }

  .contact-section-enhanced {
    padding: 20px 0 30px !important;
  }

  .contact-grid-enhanced {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

  .contact-main-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .contact-main-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .contact-mascot-enhanced {
    padding-bottom: 8px;
  }

  .contact-mascot-enhanced img {
    width: 65px;
    height: 65px;
  }

  .mascot-status {
    padding: 4px 10px;
    font-size: 0.65rem;
    min-width: 70px;
    gap: 4px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .contact-main-title h2 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .contact-main-title p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .btn-wa-enhanced {
    padding: 12px 14px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .btn-wa-icon {
    width: 34px;
    height: 34px;
  }

  .btn-wa-icon svg {
    width: 19px;
    height: 19px;
  }

  .btn-wa-label {
    font-size: 0.68rem;
  }

  .btn-wa-number {
    font-size: 0.95rem;
  }

  .contact-divider {
    margin: 16px 0;
    gap: 10px;
    font-size: 0.75rem;
  }

  .contact-alt-methods {
    gap: 8px;
  }

  .contact-alt-btn {
    padding: 12px 8px;
    font-size: 0.72rem;
    gap: 6px;
  }

  .contact-alt-btn svg {
    width: 22px;
    height: 22px;
  }

  .contact-info-enhanced {
    gap: 12px;
  }

  .contact-info-card-enhanced {
    padding: 12px 12px;
    gap: 10px;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
  }

  .info-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-card-content h3 {
    font-size: 0.82rem;
    margin-bottom: 2px;
  }

  .info-card-content p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .weekend-note {
    font-size: 0.68rem !important;
    margin-top: 1px;
  }

  .status-online,
  .status-slow,
  .status-offline {
    font-size: 0.68rem;
    padding: 2px 6px;
    margin-top: 4px;
  }

  .info-card-action a {
    width: 28px;
    height: 28px;
  }

  .info-card-action svg {
    width: 12px;
    height: 12px;
  }

  .social-section-enhanced {
    padding: 18px 14px;
    margin-top: 20px;
    border-radius: 16px;
  }

  .social-header {
    margin-bottom: 14px;
  }

  .social-header h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .social-header h2::after {
    width: 40px;
    height: 2.5px;
  }

  .social-header p {
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.5;
  }

  .social-grid-enhanced {
    gap: 8px;
  }

  .social-card-enhanced {
    padding: 12px 8px;
    gap: 6px;
    border-radius: 12px;
  }

  .social-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .social-card-icon svg {
    width: 21px;
    height: 21px;
  }

  .social-name {
    font-size: 0.75rem;
    margin-bottom: 1px;
  }

  .social-handle {
    font-size: 0.65rem;
  }

  .social-card-arrow {
    display: none;
  }
}

  .contact-main-card {
    padding: 14px 10px;
    border-radius: 16px;
  }

  .contact-mascot-enhanced img {
    width: 60px;
    height: 60px;
  }

  .mascot-status {
    padding: 5px 10px;
    font-size: 0.65rem;
    min-width: 75px;
    gap: 4px;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .contact-main-title h2 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .contact-main-title p {
    font-size: 0.8rem;
  }

  .btn-wa-enhanced {
    padding: 12px 14px;
    gap: 10px;
    font-size: 0.9rem;
  }

  .btn-wa-icon {
    width: 32px;
    height: 32px;
  }

  .btn-wa-icon svg {
    width: 18px;
    height: 18px;
  }

  .btn-wa-label {
    font-size: 0.65rem;
  }

  .btn-wa-number {
    font-size: 0.9rem;
  }

  .btn-wa-arrow {
    width: 22px;
    height: 22px;
  }

  .btn-wa-arrow svg {
    width: 14px;
    height: 14px;
  }

  .contact-divider {
    margin: 18px 0;
    gap: 10px;
    font-size: 0.75rem;
  }

  .contact-alt-methods {
    gap: 8px;
  }

  .contact-alt-btn {
    padding: 10px 6px;
    font-size: 0.7rem;
    gap: 5px;
  }

  .contact-alt-btn svg {
    width: 20px;
    height: 20px;
  }

  .contact-info-enhanced {
    gap: 10px;
  }

  .contact-info-card-enhanced {
    padding: 12px 10px;
    gap: 10px;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
  }

  .info-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-card-content h3 {
    font-size: 0.8rem;
  }

  .info-card-content p {
    font-size: 0.75rem;
  }

  .weekend-note {
    font-size: 0.65rem !important;
  }

  .status-online,
  .status-slow,
  .status-offline {
    font-size: 0.65rem;
    padding: 2px 6px;
    gap: 4px;
  }

  .info-card-action a {
    width: 28px;
    height: 28px;
  }

  .info-card-action svg {
    width: 12px;
    height: 12px;
  }

  .social-section-enhanced {
    padding: 20px 14px;
    margin-top: 25px;
  }

  .social-header {
    margin-bottom: 16px;
  }

  .social-header h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .social-header h3::after {
    width: 35px;
    height: 2.5px;
  }

  .social-header p {
    font-size: 0.8rem;
    margin-top: 8px;
  }

  .social-grid-enhanced {
    gap: 8px;
  }

  .social-card-enhanced {
    padding: 12px 8px;
    gap: 7px;
  }

  .social-card-icon {
    width: 44px;
    height: 44px;
  }

  .social-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .social-name {
    font-size: 0.75rem;
  }

  .social-handle {
    font-size: 0.65rem;
  }

  .social-card-arrow {
    width: 22px;
    height: 22px;
  }

  .social-card-arrow svg {
    width: 11px;
    height: 11px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (375px-479px)
   ============================================ */
@media (min-width: 375px) and (max-width: 479px) {
  .page-header-enhanced {
    padding: 62px 0 22px !important;
  }

  .contact-section-enhanced {
    padding: 22px 0 32px !important;
  }

  .page-title-enhanced {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .page-subtitle-enhanced {
    margin: 10px auto 0;
    font-size: 0.9rem;
  }

  .contact-grid-enhanced {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }

  .contact-main-card {
    padding: 18px 15px;
  }

  .contact-main-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .contact-mascot-enhanced img {
    width: 68px;
    height: 68px;
  }

  .mascot-status {
    padding: 5px 11px;
    font-size: 0.68rem;
  }

  .contact-main-title h2 {
    font-size: 1.05rem;
  }

  .contact-main-title p {
    font-size: 0.88rem;
  }

  .btn-wa-enhanced {
    padding: 13px 15px;
  }

  .contact-divider {
    margin: 18px 0;
  }

  .contact-alt-methods {
    gap: 10px;
  }

  .contact-alt-btn {
    padding: 12px 8px;
    font-size: 0.75rem;
  }

  .contact-info-enhanced {
    gap: 12px;
  }

  .contact-info-card-enhanced {
    padding: 13px 12px;
  }

  .social-section-enhanced {
    padding: 20px 16px;
    margin-top: 22px;
  }

  .social-header {
    margin-bottom: 16px;
  }

  .social-grid-enhanced {
    gap: 10px;
  }

  .social-card-enhanced {
    padding: 13px 10px;
  }
}

  .contact-main-card {
    padding: 16px 12px;
  }

  .contact-mascot-enhanced img {
    width: 65px;
    height: 65px;
  }

  .btn-wa-enhanced {
    padding: 13px 15px;
  }

  .social-section-enhanced {
    padding: 22px 15px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE LANDSCAPE & SMALL TABLET (480px-767px)
   ============================================ */
@media (min-width: 480px) and (max-width: 767px) {
  .page-header-enhanced {
    padding: 68px 0 14px !important;
  }

  .page-title-enhanced {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .page-subtitle-enhanced {
    font-size: 0.9rem;
    padding: 0 40px;
    margin: 8px auto 0;
  }

  .contact-section-enhanced {
    padding: 16px 0 35px !important;
  }

  .contact-grid-enhanced {
    gap: 18px;
    margin-bottom: 35px;
  }

  .contact-main-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .contact-main-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-mascot-enhanced {
    padding-bottom: 12px;
  }

  .contact-mascot-enhanced img {
    width: 75px;
    height: 75px;
  }

  .mascot-status {
    padding: 7px 14px;
    font-size: 0.75rem;
    min-width: 85px;
  }

  .status-dot {
    width: 7.5px;
    height: 7.5px;
  }

  .contact-main-title h2 {
    font-size: 1.2rem;
  }

  .contact-main-title p {
    font-size: 0.9rem;
  }

  .btn-wa-enhanced {
    padding: 16px 18px;
    font-size: 0.98rem;
    border-radius: 15px;
  }

  .btn-wa-icon {
    width: 36px;
    height: 36px;
  }

  .btn-wa-icon svg {
    width: 21px;
    height: 21px;
  }

  .btn-wa-label {
    font-size: 0.72rem;
  }

  .btn-wa-number {
    font-size: 1rem;
  }

  .btn-wa-arrow {
    width: 26px;
    height: 26px;
  }

  .btn-wa-arrow svg {
    width: 17px;
    height: 17px;
  }

  .contact-divider {
    margin: 24px 0;
    gap: 14px;
    font-size: 0.82rem;
  }

  .contact-alt-methods {
    gap: 11px;
  }

  .contact-alt-btn {
    padding: 14px 9px;
    font-size: 0.78rem;
    gap: 7px;
    border-radius: 13px;
  }

  .contact-alt-btn svg {
    width: 23px;
    height: 23px;
  }

  .contact-info-enhanced {
    gap: 13px;
  }

  .contact-info-card-enhanced {
    padding: 16px 14px;
    gap: 13px;
    border-radius: 15px;
  }

  .info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .info-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .info-card-content h3 {
    font-size: 0.9rem;
  }

  .info-card-content p {
    font-size: 0.82rem;
  }

  .weekend-note {
    font-size: 0.72rem !important;
  }

  .status-online,
  .status-slow,
  .status-offline {
    font-size: 0.72rem;
    padding: 3.5px 9px;
  }

  .info-card-action a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .info-card-action svg {
    width: 15px;
    height: 15px;
  }

  .social-section-enhanced {
    padding: 28px 20px;
    margin-top: 35px;
    border-radius: 22px;
  }

  .social-header {
    margin-bottom: 24px;
  }

  .social-header h3 {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }

  .social-header h3::after {
    width: 45px;
    height: 3px;
  }

  .social-header p {
    font-size: 0.92rem;
    margin-top: 11px;
  }

  .social-grid-enhanced {
    gap: 12px;
  }

  .social-card-enhanced {
    padding: 16px 12px;
    gap: 9px;
    border-radius: 15px;
  }

  .social-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .social-card-icon svg {
    width: 26px;
    height: 26px;
  }

  .social-name {
    font-size: 0.85rem;
  }

  .social-handle {
    font-size: 0.75rem;
  }

  .social-card-arrow {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .social-card-arrow svg {
    width: 13px;
    height: 13px;
  }
}

/* ============================================
   RESPONSIVE - TABLET (768px+) - NO OVERFLOW
   ============================================ */
@media (min-width: 768px) {
  .page-header-enhanced {
    padding: 75px 0 16px !important;
  }

  .page-title-enhanced {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .page-title-enhanced::after {
    width: 55px;
    height: 3px;
  }

  .page-subtitle-enhanced {
    font-size: 0.95rem;
    padding: 0 50px;
    margin: 10px auto 0;
  }

  .contact-section-enhanced {
    padding: 20px 0 50px !important;
  }

  .contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-main-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-main-header {
    gap: 16px;
  }

  .contact-mascot-enhanced {
    padding-bottom: 14px;
  }

  .contact-mascot-enhanced img {
    width: 90px;
    height: 90px;
  }

  .mascot-status {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-width: 110px;
    border-radius: 24px;
    bottom: 0;
  }

  .status-dot {
    width: 9px;
    height: 9px;
  }

  .btn-wa-enhanced {
    padding: 22px 26px;
    font-size: 1.08rem;
    border-radius: 18px;
  }

  .btn-wa-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .btn-wa-icon svg {
    width: 30px;
    height: 30px;
  }

  .btn-wa-label {
    font-size: 0.85rem;
  }

  .btn-wa-number {
    font-size: 1.25rem;
  }

  .contact-divider {
    margin: 32px 0;
    gap: 20px;
  }

  .contact-alt-methods {
    gap: 16px;
  }

  .contact-alt-btn {
    padding: 20px 14px;
    font-size: 0.88rem;
    border-radius: 16px;
  }

  .contact-alt-btn svg {
    width: 28px;
    height: 28px;
  }

  .contact-info-enhanced {
    gap: 16px;
  }

  .contact-info-card-enhanced {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .info-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .info-card-content h3 {
    font-size: 1rem;
  }

  .info-card-content p {
    font-size: 0.9rem;
  }

  .info-card-action a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .info-card-action svg {
    width: 18px;
    height: 18px;
  }

  .social-section-enhanced {
    padding: 40px 32px;
    border-radius: 28px;
    margin-top: 60px;
  }

  .social-header {
    margin-bottom: 32px;
  }

  .social-header h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .social-header h3::after {
    width: 60px;
    height: 4px;
  }

  .social-header p {
    font-size: 1.05rem;
  }

  .social-grid-enhanced {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .social-card-enhanced {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .social-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .social-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .social-name {
    font-size: 0.95rem;
  }

  .social-handle {
    font-size: 0.85rem;
  }

  .social-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
  }

  .social-card-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (992px+)
   ============================================ */
@media (min-width: 992px) {
  .contact-section-enhanced {
    padding: 24px 0 50px !important;
  }

  .page-header-enhanced {
    padding: 80px 0 18px !important;
  }

  .page-title-enhanced {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .page-subtitle-enhanced {
    font-size: 1rem;
    margin: 12px auto 0;
  }

  .contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
  }

  .contact-main-card {
    padding: 24px 20px;
  }

  .contact-info-card-enhanced {
    padding: 18px;
  }

  .social-section-enhanced {
    padding: 36px 32px;
  }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .contact-main-card {
    padding: 28px 24px;
  }

  .social-section-enhanced {
    padding: 40px 36px;
  }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Focus States */
.btn-wa-enhanced:focus-visible,
.contact-alt-btn:focus-visible,
.social-card-enhanced:focus-visible,
.info-card-action a:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  .btn-wa-enhanced,
  .contact-alt-btn,
  .social-card-enhanced,
  .info-card-action a {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .contact-info-card-enhanced:hover,
  .btn-wa-enhanced:hover,
  .contact-alt-btn:hover,
  .social-card-enhanced:hover {
    transform: none;
    box-shadow: inherit;
    border-color: inherit;
  }

  .contact-info-card-enhanced:hover .info-card-icon,
  .social-card-enhanced:hover .social-card-icon,
  .social-card-enhanced:hover .social-card-arrow {
    transform: none;
  }

  /* Elegant touch feedback */
  .contact-info-card-enhanced:active,
  .btn-wa-enhanced:active,
  .contact-alt-btn:active,
  .social-card-enhanced:active {
    transform: scale(0.98);
    opacity: 0.9;
    transition: all 0.1s ease;
  }
}

/* Print Styles */
@media print {

  .contact-main-card,
  .contact-info-card-enhanced,
  .social-card-enhanced {
    box-shadow: none;
    border: 1px solid #000000;
    page-break-inside: avoid;
  }

  .btn-wa-enhanced {
    background: #25d366;
    color: #ffffff;
  }
}

/* Prevent Layout Shift */
.contact-mascot-enhanced img {
  aspect-ratio: 1 / 1;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Fix for Safari */
@supports (-webkit-appearance: none) {

  .contact-main-card,
  .contact-info-card-enhanced {
    -webkit-transform: translateZ(0);
  }
}

/* Ensure proper stacking */
.contact-main-card,
.contact-info-card-enhanced,
.social-card-enhanced {
  position: relative;
  z-index: 1;
}

/* ============================================
   SEO SECTION RESPONSIVE - MOBILE OPTIMIZATION
   ============================================ */

/* Mobile - Extra Small (320px-374px) */
@media (max-width: 374px) {
  .seo-section-kontak {
    padding: 25px 0 !important;
  }

  .seo-header {
    margin-bottom: 18px !important;
  }

  .seo-title {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }

  .seo-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .seo-grid {
    gap: 12px !important;
    margin-bottom: 20px !important;
    grid-template-columns: 1fr !important;
  }

  .seo-card {
    padding: 16px !important;
    border-radius: 10px !important;
  }

  .seo-icon {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }

  .seo-card-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .seo-card-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .seo-faq {
    padding: 18px !important;
    border-radius: 10px !important;
  }

  .seo-faq-title {
    font-size: 1.15rem !important;
    margin-bottom: 14px !important;
  }

  .seo-faq-grid {
    gap: 10px !important;
  }

  .seo-faq-item {
    padding: 12px !important;
    border-radius: 6px !important;
  }

  .seo-faq-q {
    font-size: 0.85rem !important;
    margin-bottom: 5px !important;
  }

  .seo-faq-a {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  .seo-faq-footer {
    margin-top: 16px !important;
    font-size: 0.82rem !important;
  }
}

/* Mobile - Small (375px-479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .seo-section-kontak {
    padding: 30px 0 !important;
  }

  .seo-header {
    margin-bottom: 20px !important;
  }

  .seo-title {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .seo-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .seo-grid {
    gap: 14px !important;
    margin-bottom: 24px !important;
    grid-template-columns: 1fr !important;
  }

  .seo-card {
    padding: 18px !important;
  }

  .seo-icon {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }

  .seo-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 7px !important;
  }

  .seo-card-text {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .seo-faq {
    padding: 20px !important;
  }

  .seo-faq-title {
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
  }

  .seo-faq-grid {
    gap: 12px !important;
  }

  .seo-faq-item {
    padding: 13px !important;
  }

  .seo-faq-q {
    font-size: 0.88rem !important;
    margin-bottom: 6px !important;
  }

  .seo-faq-a {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .seo-faq-footer {
    margin-top: 18px !important;
    font-size: 0.85rem !important;
  }
}

/* Mobile - Landscape (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .seo-section-kontak {
    padding: 35px 0 !important;
  }

  .seo-header {
    margin-bottom: 24px !important;
  }

  .seo-title {
    font-size: 1.7rem !important;
    margin-bottom: 12px !important;
  }

  .seo-subtitle {
    font-size: 0.95rem !important;
  }

  .seo-grid {
    gap: 16px !important;
    margin-bottom: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .seo-card {
    padding: 20px !important;
  }

  .seo-icon {
    font-size: 1.7rem !important;
  }

  .seo-card-title {
    font-size: 1.08rem !important;
  }

  .seo-card-text {
    font-size: 0.9rem !important;
  }

  .seo-faq {
    padding: 24px !important;
  }

  .seo-faq-title {
    font-size: 1.25rem !important;
    margin-bottom: 18px !important;
  }

  .seo-faq-item {
    padding: 15px !important;
  }

  .seo-faq-q {
    font-size: 0.9rem !important;
  }

  .seo-faq-a {
    font-size: 0.88rem !important;
  }

  .seo-faq-footer {
    margin-top: 20px !important;
    font-size: 0.88rem !important;
  }
}