/* ═══════════════════════════════════════════════════════
   EVEROAK PLUGIN STYLES — All shortcode output styles
   Prefix: .eo- to avoid conflicts with any WP theme
═══════════════════════════════════════════════════════ */

:root {
  --eo-gold:       #C89A2E;
  --eo-gold-b:     #E8BA40;
  --eo-walnut:     #2A1408;
  --eo-mahogany:   #4A2010;
  --eo-charcoal:   #080808;
  --eo-panel:      #0F0F0F;
  --eo-dark2:      #141414;
}

/* ── SLIDER ── */
.eo-slider {
  position: fixed;
  inset: 0;
  top: var(--eo-header-h, 116px);
  overflow: hidden;
  background: #000;
  z-index: 1;
}
.eo-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
}
.eo-slide.active { opacity: 1; z-index: 2; }
.eo-slide-bg {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 10s ease;
  will-change: transform;
}
.eo-slide.active .eo-slide-bg { transform: scale(1.0); }
.eo-slide-ov {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to top, rgba(4,1,0,0.88) 0%, rgba(4,1,0,0.42) 38%, rgba(4,1,0,0.08) 72%, transparent 100%),
    linear-gradient(to bottom, rgba(4,1,0,0.55) 0%, transparent 25%);
}
.eo-slide-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 32px 80px;
}
.eo-slide-cat {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
  opacity: 0; transform: rotateX(-90deg); transform-origin: bottom center;
  transition: opacity .7s .1s, transform .7s .1s cubic-bezier(.2,.8,.2,1);
}
.eo-slide.active .eo-slide-cat { opacity: 1; transform: rotateX(0); }
.eo-tick {
  display: block; width: 40px; height: 1px;
  background: rgba(200,154,46,0.7);
}
.eo-cat-text {
  font-size: 10px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--eo-gold-b);
  text-shadow: 0 0 20px rgba(232,186,64,0.5);
}
.eo-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 7.5vw, 86px);
  font-weight: 700; line-height: 1.0;
  color: #FFFFFF; text-transform: uppercase;
  letter-spacing: 18px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.8), 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 1.1s .25s ease, letter-spacing 1.1s .25s cubic-bezier(.16,1,.3,1);
}
.eo-slide.active .eo-slide-title { opacity: 1; letter-spacing: 2px; }
.eo-slide-divider {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--eo-gold-b), transparent);
  margin: 0 auto 18px;
  box-shadow: 0 0 10px rgba(232,186,64,0.5);
  transition: width 1s .7s ease;
}
.eo-slide.active .eo-slide-divider { width: 80px; }
.eo-slide-loc {
  font-size: 11px; font-weight: 300; letter-spacing: 6px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  opacity: 0; filter: blur(8px);
  transition: opacity .8s .85s, filter .8s .85s;
}
.eo-slide.active .eo-slide-loc { opacity: 1; filter: blur(0); }
.eo-slide-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 32px;
  border: 1px solid rgba(200,154,46,0.6);
  background: rgba(200,154,46,0.06);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s 1.0s, transform .7s 1.0s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s;
}
.eo-slide.active .eo-slide-btn { opacity: 1; transform: translateY(0); }
.eo-slide-btn:hover { background: var(--eo-gold); border-color: var(--eo-gold); color: #080808; }

/* Arrows */
.eo-arr {
  position: absolute; z-index: 20; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(4,1,0,0.4); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; outline: none; transition: all .35s;
}
.eo-arr:hover { background: var(--eo-gold); border-color: var(--eo-gold); }
.eo-arr:hover svg { stroke: #080808; }
.eo-arr svg { width: 20px; height: 20px; fill: none; stroke: #FFFFFF; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.eo-prev { left: 28px; }
.eo-next { right: 28px; }

/* Dots */
.eo-dots-wrap {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.eo-dots { display: flex; align-items: center; gap: 14px; }
.eo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all .45s cubic-bezier(.4,0,.2,1);
}
.eo-dot:hover { background: rgba(200,154,46,0.6); border-color: var(--eo-gold); }
.eo-dot.active {
  background: var(--eo-gold-b); border-color: var(--eo-gold-b);
  width: 38px; border-radius: 5px;
  box-shadow: 0 0 16px rgba(232,186,64,0.7);
}
.eo-slide-ct {
  font-family: 'Playfair Display', serif;
  font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.4);
}
.eo-slide-ct strong { color: rgba(255,255,255,0.7); }
.eo-pause-btn {
  position: absolute; bottom: 42px; right: 32px; z-index: 20;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(4,1,0,0.45); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; outline: none; transition: all .3s;
}
.eo-pause-btn:hover { border-color: var(--eo-gold); }
.eo-pause-btn svg { width: 11px; height: 11px; }

/* ── GALLERY & PORTFOLIO ── */
.eo-filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.eo-filter-btn {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  background: transparent;
  border: 1px solid rgba(200,154,46,0.2);
  padding: 10px 20px; cursor: pointer; transition: all .25s;
}
.eo-filter-btn:hover { color: #fff; border-color: rgba(200,154,46,0.5); }
.eo-filter-btn.active {
  background: var(--eo-gold); color: #080808;
  border-color: var(--eo-gold); font-weight: 700;
}
.eo-gallery {
  display: grid; gap: 3px;
}
.eo-cols-3 { grid-template-columns: repeat(3, 1fr); }
.eo-cols-2 { grid-template-columns: repeat(2, 1fr); }
.eo-cols-4 { grid-template-columns: repeat(4, 1fr); }
.eo-g-item {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  background: #0a0a0a;
}
.eo-g-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.eo-g-item:hover img { transform: scale(1.08); }
.eo-g-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,3,0,0.92) 0%, rgba(8,3,0,0.25) 55%, transparent 100%);
  opacity: 0.55; transition: opacity .4s;
}
.eo-g-item:hover .eo-g-ov { opacity: 0.92; }
.eo-g-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  transform: translateY(10px); transition: transform .4s;
}
.eo-g-item:hover .eo-g-info { transform: translateY(0); }
.eo-g-cat {
  font-size: 8.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--eo-gold-b);
  margin-bottom: 4px; opacity: 0; transition: opacity .35s;
}
.eo-g-item:hover .eo-g-cat { opacity: 1; }
.eo-g-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600; color: #fff;
}
.eo-g-loc {
  font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.55);
  letter-spacing: 1px; margin-top: 3px;
}
.eo-g-link {
  display: inline-block; margin-top: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--eo-gold-b);
  text-decoration: none; opacity: 0; transition: opacity .35s .05s;
}
.eo-g-item:hover .eo-g-link { opacity: 1; }
.eo-g-item.eo-hidden { display: none; }

/* Lightbox */
.eo-lightbox {
  position: fixed; inset: 0;
  background: rgba(4,1,0,0.96); backdrop-filter: blur(8px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 60px;
}
.eo-lightbox.open { display: flex; }
.eo-lightbox img {
  max-width: 90%; max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.eo-lb-close {
  position: absolute; top: 24px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid rgba(200,154,46,0.3);
  background: rgba(8,3,0,0.5);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 22px; transition: all .3s;
}
.eo-lb-close:hover { background: var(--eo-gold); color: #080808; border-color: var(--eo-gold); }
.eo-lb-caption {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 13px; letter-spacing: 1px;
}

/* ── SERVICES BLOCK ── */
.eo-svc-block {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(200,154,46,0.1);
  margin-bottom: 48px; overflow: hidden;
}
.eo-svc-block.eo-flip .eo-svc-img { order: 2; }
.eo-svc-img {
  position: relative; min-height: 380px; overflow: hidden;
}
.eo-svc-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.eo-svc-block:hover .eo-svc-img img { transform: scale(1.04); }
.eo-svc-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,3,0,0.4), transparent 50%);
}
.eo-svc-text {
  background: var(--eo-panel);
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.eo-svc-num-tag {
  font-family: 'Playfair Display', serif;
  font-size: 13px; color: var(--eo-gold);
  letter-spacing: 2px; margin-bottom: 10px;
}
.eo-svc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600; color: #fff; margin-bottom: 6px;
}
.eo-svc-tagline {
  font-size: 12px; font-weight: 300; font-style: italic;
  color: rgba(232,186,64,0.75); margin-bottom: 16px;
}
.eo-svc-desc {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 20px;
}
.eo-svc-desc p { margin-bottom: 12px; }
.eo-svc-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px; margin-bottom: 24px;
}
.eo-svc-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 400; color: rgba(255,255,255,0.75);
}
.eo-svc-feat::before {
  content: '>'; color: var(--eo-gold); font-weight: 700; flex-shrink: 0;
}

/* ── STATS ── */
.eo-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--eo-walnut);
  border-top: 1px solid rgba(200,154,46,0.15);
  border-bottom: 1px solid rgba(200,154,46,0.15);
}
.eo-stat {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid rgba(200,154,46,0.1);
}
.eo-stat:last-child { border-right: none; }
.eo-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700;
  color: var(--eo-gold-b); line-height: 1; margin-bottom: 7px;
  text-shadow: 0 0 20px rgba(232,186,64,0.4);
}
.eo-stat-l {
  font-size: 9px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── CONTACT INFO ── */
.eo-contact-info { display: flex; flex-direction: column; gap: 1px; }
.eo-ci-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px; background: #0F0F0F;
  border: 1px solid rgba(200,154,46,0.08);
  text-decoration: none; transition: all .3s;
}
.eo-ci-card:hover { border-color: rgba(200,154,46,0.3); background: #141414; }
.eo-ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(200,154,46,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--eo-gold-b);
}
.eo-ci-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.eo-ci-icon.wa { color: #25D366; border-color: rgba(37,211,102,0.4); }
.eo-ci-label {
  font-size: 8.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--eo-gold); margin-bottom: 5px;
}
.eo-ci-val { font-size: 13.5px; font-weight: 500; color: #FFFFFF; }
.eo-ci-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 2px; }
.eo-ci-hours {
  padding: 22px; background: #0F0F0F;
  border: 1px solid rgba(200,154,46,0.08); margin-top: 8px;
}
.eo-ci-hours-title {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--eo-gold); margin-bottom: 16px;
}
.eo-ci-hour-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12.5px;
}
.eo-ci-hour-row:last-child { border-bottom: none; }
.eo-ci-hour-row span:first-child { font-weight: 400; color: rgba(255,255,255,0.6); }
.eo-ci-hour-row span:last-child  { font-weight: 600; color: #fff; }

/* ── CONTACT FORM ── */
.eo-contact-form-wrap { background: #0F0F0F; border: 1px solid rgba(200,154,46,0.1); padding: 42px 38px; }
.eo-cf-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.eo-cf-sub { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.eo-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.eo-cf-group { margin-bottom: 18px; }
.eo-cf-label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.eo-cf-input,
.eo-cf-select,
.eo-cf-textarea {
  width: 100%; padding: 13px 16px;
  background: #0A0A0A; border: 1px solid rgba(200,154,46,0.18);
  color: #FFFFFF; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.eo-cf-input:focus,
.eo-cf-select:focus,
.eo-cf-textarea:focus {
  border-color: var(--eo-gold);
  box-shadow: 0 0 0 2px rgba(200,154,46,0.15);
}
.eo-cf-input::placeholder,
.eo-cf-textarea::placeholder { color: rgba(255,255,255,0.25); }
.eo-cf-select {
  appearance: none; cursor: pointer; color: rgba(255,255,255,0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C89A2E'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  background-color: #0A0A0A;
}
.eo-cf-select option { background: #0A0A0A; color: #fff; }
.eo-cf-textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.eo-cf-submit {
  width: 100%; padding: 16px;
  background: var(--eo-gold); color: #080808; border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 20px rgba(200,154,46,0.3); margin-top: 6px;
}
.eo-cf-submit:hover { background: var(--eo-gold-b); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,186,64,0.4); }
.eo-cf-msg { font-size: 12px; margin-bottom: 10px; min-height: 18px; }
.eo-cf-msg.error { color: #ff6b6b; }
.eo-cf-msg.loading { color: var(--eo-gold); }
.eo-cf-success { text-align: center; padding: 60px 20px; }
.eo-cf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--eo-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--eo-gold-b);
  font-size: 28px; font-weight: 700;
}
.eo-cf-success h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 10px; }
.eo-cf-success p  { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── BUTTONS ── */
.eo-btn-g {
  display: inline-block; background: var(--eo-gold); color: #080808;
  padding: 13px 30px; font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  transition: all .3s; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(200,154,46,0.3);
}
.eo-btn-g:hover { background: var(--eo-gold-b); transform: translateY(-2px); color: #080808; }
.eo-btn-o {
  display: inline-block; background: transparent; color: #FFFFFF;
  padding: 13px 30px; font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(200,154,46,0.45); transition: all .3s;
}
.eo-btn-o:hover { border-color: var(--eo-gold); color: var(--eo-gold-b); }

/* ── MAP ── */
.eo-map-wrap { height: 340px; border: 1px solid rgba(200,154,46,0.15); overflow: hidden; }
.eo-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── WIDGET ── */
.eo-widget-services { list-style: none; padding: 0; }
.eo-widget-services li { padding: 6px 0; border-bottom: 1px solid rgba(200,154,46,0.08); }
.eo-widget-services a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color .25s; }
.eo-widget-services a:hover { color: var(--eo-gold-b); }

/* ── SCROLL REVEAL ── */
.eo-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.eo-reveal.eo-in { opacity: 1; transform: translateY(0); }
.eo-reveal-d1 { transition-delay: .1s; }
.eo-reveal-d2 { transition-delay: .2s; }
.eo-reveal-d3 { transition-delay: .3s; }
.eo-reveal-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .eo-svc-block { grid-template-columns: 1fr; }
  .eo-svc-block.eo-flip .eo-svc-img { order: 0; }
  .eo-cols-3 { grid-template-columns: repeat(2,1fr); }
  .eo-cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .eo-arr { width: 44px; height: 44px; }
  .eo-prev { left: 12px; }
  .eo-next { right: 12px; }
  .eo-dot  { width: 9px; height: 9px; }
  .eo-dot.active { width: 28px; }
  .eo-stats { grid-template-columns: repeat(2,1fr); }
  .eo-svc-feats { grid-template-columns: 1fr; }
  .eo-cf-row { grid-template-columns: 1fr; }
  .eo-contact-form-wrap { padding: 28px 22px; }
}
@media (max-width: 560px) {
  .eo-cols-2, .eo-cols-3, .eo-cols-4 { grid-template-columns: 1fr; }
  .eo-filter-btn { font-size: 9px; padding: 8px 14px; }
  .eo-slide-title { letter-spacing: 6px; }
  .eo-slide.active .eo-slide-title { letter-spacing: 1px; }
}
