/* Elora Design — conversion, SEO sections, WhatsApp */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

.services-section,
.testimonials-section {
  padding: 80px 0;
  background-color: var(--color-dark-4, #060707);
}

.services-container,
.testimonials-container,
.contact-container,
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-4, #888);
  margin-bottom: 12px;
}

.services-heading,
.testimonials-heading,
.contact-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-light-4, #fff);
  margin-bottom: 16px;
}

.testimonials-heading {
  margin-bottom: 56px;
}

.services-intro,
.contact-intro {
  font-size: 16px;
  color: var(--color-gray-4, #888);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.contact-intro {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.service-card,
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark-theme, #fdf9cf);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-light-4, #fff);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-gray-4, #888);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 13px;
  color: var(--color-gray-4, #888);
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.service-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #666;
}

.services-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-light-4, #fff);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-light-4, #fff);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-light-4, #fff);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-light-4, #fff);
}

.author-role {
  font-size: 12px;
  color: var(--color-gray-4, #888);
  letter-spacing: 0.05em;
}

.contact-section {
  padding: 80px 0 40px;
}

.contact-container {
  max-width: 700px;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.contact-method:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-method-icon {
  font-size: 22px;
}

.contact-method-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-light-4, #fff);
}

.cta-button-primary {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-light-4, #fff);
  color: var(--color-dark-4, #060707);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  margin-bottom: 20px;
}

.cta-button-primary:hover {
  opacity: 0.88;
  color: var(--color-dark-4, #060707);
}

.contact-note {
  font-size: 13px;
  color: #666;
  margin-top: 16px;
}

.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-light-4, #fff);
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-gray-4, #888);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-gray-4, #888);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-light-4, #fff);
}

.footer-legal p {
  font-size: 12px;
  color: #666;
  margin: 4px 0;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section,
  .testimonials-section {
    padding: 56px 0;
  }
}

/* ============================================ */
/* Elora Design brand — red / white identity    */
/* ============================================ */
:root {
  --elora-red: #c41e3a;
  --elora-red-dark: #9e1830;
  --elora-white: #ffffff;
  --elora-off-white: #f7f7f7;
  --elora-black: #0a0a0a;
}

.elora-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
}

.elora-header__logo {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--elora-ink, #1c1c1c);
  text-decoration: none;
  line-height: 1;
}

.elora-header__logo span {
  color: var(--elora-red);
}

.elora-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.elora-header__nav a {
  color: var(--elora-ink-muted, #5c5c5c);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.elora-header__nav a:hover,
.elora-header__nav a.is-active {
  color: var(--elora-red);
}

.elora-header__cta {
  padding: 8px 16px !important;
  background: var(--elora-red) !important;
  color: var(--elora-white) !important;
  border-radius: 4px;
  text-transform: none !important;
  font-weight: 600;
}

.elora-header__cta:hover {
  background: var(--elora-red-dark) !important;
  color: var(--elora-white) !important;
}

.elora-page {
  background: var(--elora-cream, #fff9f6);
  color: var(--elora-ink, #1c1c1c);
  min-height: 100vh;
  padding-top: 72px;
}

body:not(.elora-home) .elora-header {
  background: rgba(255, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
}

body:not(.elora-home) .elora-header__logo {
  color: var(--elora-ink, #1c1c1c);
}

body:not(.elora-home) .elora-header__nav a {
  color: var(--elora-ink-muted, #5c5c5c);
}

body:not(.elora-home) .elora-section p {
  color: var(--elora-ink-muted, #5c5c5c);
  line-height: 1.8;
  max-width: 720px;
}

body:not(.elora-home) .elora-page-hero h1,
body:not(.elora-home) .elora-section h2 {
  color: var(--elora-ink, #1c1c1c);
}

body:not(.elora-home) .site-footer {
  background: var(--elora-ink, #1c1c1c);
  border-top: 3px solid var(--elora-red, #c41e3a);
}

.elora-page-hero {
  padding: 64px 24px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.elora-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.elora-page-hero .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--elora-ink-muted, #5c5c5c);
}

.elora-entity-block {
  max-width: 780px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--elora-red);
  background: rgba(196, 30, 58, 0.08);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.elora-section {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-card.featured {
  border-color: var(--elora-red);
  box-shadow: 0 0 0 1px rgba(196, 30, 58, 0.3);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--elora-red);
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--elora-white);
}

.faq-item p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.elora-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.elora-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.elora-form input,
.elora-form select,
.elora-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--elora-white);
  font-size: 15px;
  font-family: inherit;
}

.elora-form textarea {
  min-height: 120px;
  resize: vertical;
}

.elora-form button {
  width: 100%;
  padding: 14px;
  background: var(--elora-red);
  color: var(--elora-white);
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.elora-form button:hover {
  background: var(--elora-red-dark);
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.case-card:hover {
  border-color: var(--elora-red);
}

.case-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.case-card-body {
  padding: 20px;
}

.case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.case-card .tag {
  font-size: 12px;
  color: var(--elora-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card .outcome {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-style: italic;
}

.placeholder-quote {
  border: 1px dashed rgba(196, 30, 58, 0.5);
  background: rgba(196, 30, 58, 0.05);
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .services-grid--two {
    grid-template-columns: 1fr;
  }
}

.preloader--lite .preloader__wrapper-images-outer {
  display: none !important;
}

.preloader--lite .preloader__wrapper-counter {
  opacity: 0.35;
}

@media (max-width: 768px) {
  .elora-header__nav a:not(.elora-header__cta):not(.elora-header__wa) {
    display: none;
  }
}
