/* ── SOLEA INNER CIRCLE — CSS ── */
/* Prefix: ic- | Nuk konfliktojnë me stilet ekzistuese */

.ic-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: #451C00;
}

.ic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.ic-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(122,63,30,0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ic-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Ornament ─── */
.ic-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  animation: icFadeUp 0.9s ease forwards 0.1s;
}
.ic-rule::before, .ic-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C4956A, transparent);
}
.ic-rule-diamond {
  width: 8px; height: 8px;
  background: #C4956A;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Header ─── */
.ic-header { text-align: center; margin-bottom: 72px; }

.ic-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C4956A;
  margin-bottom: 20px;
  opacity: 0;
  animation: icFadeUp 0.9s ease forwards 0.2s;
}

.ic-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #FFF8D9;
  margin-bottom: 28px;
  opacity: 0;
  animation: icFadeUp 1s ease forwards 0.35s;
}
.ic-title em { font-style: italic; color: #C4956A; }

.ic-subtitle {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,248,217,0.65);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: icFadeUp 1s ease forwards 0.5s;
}

/* ─── Grid ─── */
.ic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,149,106,0.15);
  border: 1px solid rgba(196,149,106,0.15);
  margin-bottom: 80px;
  opacity: 0;
  animation: icFadeUp 1s ease forwards 0.65s;
}

.ic-grid-item {
  background: rgba(69,28,0,0.55);
  padding: 40px 32px;
  position: relative;
  transition: background 0.4s ease;
}
.ic-grid-item:hover { background: rgba(122,63,30,0.55); }
.ic-grid-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: rgba(196,149,106,0.12);
}

.ic-item-number {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #C4956A;
  margin-bottom: 20px;
  display: block;
}

.ic-item-icon { width: 36px; height: 36px; margin-bottom: 20px; opacity: 0.75; }

.ic-item-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFF8D9;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ic-item-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,248,217,0.5);
  line-height: 1.7;
}

.ic-item-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4956A;
  border: 1px solid rgba(196,149,106,0.35);
  padding: 4px 12px;
}

/* ─── Points ─── */
.ic-points-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  opacity: 0;
  animation: icFadeUp 1s ease forwards 0.8s;
}

.ic-point-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #C4956A;
  flex-shrink: 0;
}
.ic-point-dot.empty {
  background: transparent;
  border: 1px solid rgba(196,149,106,0.35);
}
.ic-point-dot.star {
  background: #D4A843;
  box-shadow: 0 0 12px rgba(212,168,67,0.4);
}

.ic-points-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,248,217,0.35);
  width: 100%;
  text-align: center;
  margin-top: 14px;
}

/* ─── CTA ─── */
.ic-cta-block {
  text-align: center;
  opacity: 0;
  animation: icFadeUp 1s ease forwards 0.95s;
}

.ic-invite-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,248,217,0.75);
  margin-bottom: 40px;
  line-height: 1.4;
}
.ic-invite-text strong { font-style: normal; font-weight: 400; color: #FFF8D9; }

.ic-cta-buttons { display: flex; justify-content: center; }

.ic-btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: #451C00;
  background: #FFF8D9;
  border: none;
  padding: 20px 56px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ic-btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: #C4956A;
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.ic-btn-primary:hover::after { transform: translateX(0); }
.ic-btn-primary span { position: relative; z-index: 1; }

/* ─── Bottom ornament ─── */
.ic-bottom-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 72px;
  opacity: 0;
  animation: icFadeUp 0.9s ease forwards 1.1s;
}
.ic-bottom-rule::before, .ic-bottom-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,149,106,0.3), transparent);
}
.ic-logo-small {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 6px;
  color: rgba(196,149,106,0.5);
  text-transform: uppercase;
}

/* ─── Modal ─── */
.ic-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,16,0,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ic-modal-overlay.open { opacity: 1; pointer-events: all; }

.ic-modal {
  background: #3a1600;
  border: 1px solid rgba(196,149,106,0.25);
  max-width: 480px;
  width: 100%;
  padding: 52px 48px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.ic-modal-overlay.open .ic-modal { transform: translateY(0); }

.ic-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,248,217,0.3);
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.ic-modal-close:hover { color: #FFF8D9; }

.ic-modal-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C4956A;
  margin-bottom: 14px;
}

.ic-modal-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #FFF8D9;
  line-height: 1.15;
  margin-bottom: 8px;
}
.ic-modal-title em { font-style: italic; color: #C4956A; }

.ic-modal-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,248,217,0.4);
  margin-bottom: 36px;
  line-height: 1.65;
}

.ic-modal-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,149,106,0.18), transparent);
  margin: 28px 0;
}

.ic-field { margin-bottom: 20px; }
.ic-field label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,248,217,0.35);
  margin-bottom: 8px;
}
.ic-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(196,149,106,0.2);
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #FFF8D9;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.ic-field input:focus { border-bottom-color: #C4956A; }
.ic-field input::placeholder { color: rgba(255,248,217,0.15); }
.ic-field input.ic-error { border-bottom-color: #E24B4A; }

.ic-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ic-submit {
  width: 100%;
  margin-top: 32px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: #451C00;
  background: #FFF8D9;
  border: none;
  padding: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ic-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: #C4956A;
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.ic-submit:hover::after { transform: translateX(0); }
.ic-submit span { position: relative; z-index: 1; }

.ic-modal-note {
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(255,248,217,0.2);
  text-align: center;
  line-height: 1.6;
}

/* ─── Success state ─── */
.ic-success { display: none; text-align: center; padding: 10px 0; }
.ic-success.show { display: block; }
.ic-form-inner.hidden { display: none; }

.ic-success-ring {
  width: 52px; height: 52px;
  border: 1px solid #C4956A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.ic-success-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  color: #FFF8D9;
  margin-bottom: 10px;
}
.ic-success-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,248,217,0.4);
  line-height: 1.7;
}

/* ─── Animations ─── */
@keyframes icFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ic-section * { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .ic-grid { grid-template-columns: repeat(2, 1fr); }
  .ic-section { padding: 72px 0 64px; }
  .ic-header { margin-bottom: 44px; }
  .ic-grid { margin-bottom: 48px; }
  .ic-points-row { margin-bottom: 44px; }
  .ic-bottom-rule { margin-top: 48px; }
}

@media (max-width: 768px) {
  .ic-section { padding: 56px 0 48px; }
  .ic-container { padding: 0 20px; }
  .ic-rule { margin-bottom: 28px; }
  .ic-header { margin-bottom: 32px; }
  .ic-eyebrow { letter-spacing: 3px; margin-bottom: 12px; }
  .ic-title { font-size: clamp(36px, 9vw, 52px); margin-bottom: 16px; }
  .ic-subtitle { font-size: 15px; line-height: 1.55; }

  .ic-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 36px;
  }

  .ic-grid-item {
    padding: 18px 14px;
  }

  .ic-grid-item::after {
    left: 14px;
    right: 14px;
  }

  .ic-item-number {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .ic-item-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }

  .ic-item-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .ic-item-desc {
    font-size: 11px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ic-item-badge {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 3px 8px;
    margin-top: 8px;
  }

  .ic-points-row { margin-bottom: 32px; gap: 8px; }
  .ic-points-label { font-size: 9px; letter-spacing: 2px; margin-top: 10px; }

  .ic-invite-text {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 24px;
  }

  .ic-btn-primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 16px 28px;
  }

  .ic-bottom-rule { margin-top: 36px; }
}

@media (max-width: 520px) {
  .ic-modal { padding: 40px 24px; }
  .ic-field-row { grid-template-columns: 1fr; }

  .ic-grid-item {
    padding: 16px 12px;
  }

  .ic-item-title { font-size: 14px; }
  .ic-item-desc { -webkit-line-clamp: 2; }
}

@media (max-width: 480px) {
  .ic-points-row { gap: 6px; }
  .ic-point-dot { width: 10px; height: 10px; }
  .ic-section { padding: 48px 0 40px; }
  .ic-container { padding: 0 16px; }
  .ic-title { font-size: 32px; }
  .ic-subtitle { font-size: 14px; max-width: 100%; }
  .ic-invite-text { font-size: 22px; }
  .ic-modal { padding: 36px 20px; }
  .ic-modal-title { font-size: 26px; }
  .ic-btn-primary { padding: 14px 24px; font-size: 10px; letter-spacing: 2px; }
}
