/* ===========================
   WebsAura – Main Stylesheet
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8192C;
  --red-light: #FF3347;
  --red-soft: #FFF0F2;
  --white: #FFFFFF;
  --off-white: #F9F9FB;
  --gray-50: #F5F5F7;
  --gray-100: #E8E8ED;
  --gray-400: #8A8A9A;
  --gray-600: #4A4A5A;
  --dark: #0D0D14;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-full: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

/* =====================
   SCROLL ANIMATIONS
   ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* =====================
   NAVIGATION
   ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gray-100);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s !important;
  box-shadow: 0 2px 12px rgba(232,25,44,0.25);
}
.nav-cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,25,44,0.3);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,25,44,0.35);
  color: white;
}
.btn-ghost {
  color: var(--dark); font-weight: 500; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--red); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* =====================
   SECTION HELPERS
   ===================== */
section { padding: 100px 5%; }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--gray-600);
  max-width: 560px; line-height: 1.7;
}
.section-head { margin-bottom: 4rem; }
.center-head { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.center-head .section-sub { margin: 0 auto; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,25,44,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red-soft); color: var(--red);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 1.1rem; color: var(--gray-600);
  max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--gray-400); margin-top: 0.3rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-100);
}
.hero-card-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #28C840; }
.code-line {
  height: 10px; border-radius: 6px; background: var(--gray-100);
  margin-bottom: 0.6rem;
}
.code-line.red { background: rgba(232,25,44,0.15); width: 60%; }
.code-line.w80 { width: 80%; }
.code-line.w65 { width: 65%; }
.code-line.w90 { width: 90%; }
.code-line.w50 { width: 50%; }
.code-line.w70 { width: 70%; }

.float-badge {
  position: absolute;
  background: white; border-radius: 16px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.float-badge.b1 { top: -20px; right: 20px; animation: floatUp 3s ease-in-out infinite; }
.float-badge.b2 { bottom: 30px; left: -30px; animation: floatUp 3s ease-in-out infinite 1s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* =====================
   MARQUEE
   ===================== */
.marquee-section { padding: 2.5rem 0; background: var(--red); overflow: hidden; }
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; gap: 1rem;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.3); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  border-color: rgba(232,25,44,0.2);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--red-soft); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* =====================
   ABOUT
   ===================== */
.about { background: var(--off-white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-img-card {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-img-card.emoji-card { background: var(--gray-100); font-size: 4rem; }
.about-img-card:first-child { margin-top: 2rem; }
.about-img-card.red-card {
  background: var(--red); color: white;
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem; text-align: center;
}
.about-img-card.red-card .big-num { font-size: 3rem; line-height: 1; }
.about-content .section-sub { margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: white;
  border-radius: 14px; border: 1px solid var(--gray-100);
}
.about-feat-icon {
  width: 36px; height: 36px; background: var(--red-soft);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.about-feat h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.25rem; }
.about-feat p  { font-size: 0.84rem; color: var(--gray-600); }

/* =====================
   PROCESS
   ===================== */
.process { background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 26px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: white;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(232,25,44,0.3);
}
.process-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }

/* =====================
   WHY CHOOSE US
   ===================== */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.why-card {
  padding: 2rem; border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); background: white;
  transition: all 0.3s; cursor: default;
}
.why-card:hover {
  background: var(--dark); color: white;
  border-color: var(--dark); transform: translateY(-4px);
}
.why-card:hover p      { color: rgba(255,255,255,0.6); }
.why-card:hover .why-num { color: rgba(255,255,255,0.1); }
.why-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800; color: var(--gray-100);
  line-height: 1; margin-bottom: 1rem; transition: color 0.3s;
}
.why-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; transition: color 0.3s; }
.why-card p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; transition: color 0.3s; }

/* =====================
   PRICING
   ===================== */
.pricing { background: var(--off-white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 800px; margin: 0 auto;
}
.price-card {
  background: white; border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; transition: all 0.3s;
}
.price-card.featured {
  background: var(--red); border-color: var(--red);
  color: white; transform: scale(1.03);
}
.price-card.featured p         { color: rgba(255,255,255,0.75); }
.price-card.featured .price-per { color: rgba(255,255,255,0.6); }
.price-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); margin-bottom: 1.5rem;
}
.price-card.featured .price-label { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem;
}
.price-per   { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.price-desc  { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 2rem; }
.price-btn {
  display: block; padding: 0.85rem 2rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.price-card:not(.featured) .price-btn { background: var(--red-soft); color: var(--red); }
.price-card:not(.featured) .price-btn:hover { background: var(--red); color: white; }
.price-card.featured .price-btn { background: white; color: var(--red); }
.price-card.featured .price-btn:hover { background: var(--dark); color: white; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testi-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 2rem;
}
.testi-stars  { color: var(--red); font-size: 1rem; margin-bottom: 1rem; }
.testi-text   { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-soft); color: var(--red);
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.8rem; color: var(--gray-400); }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: var(--dark); color: white;
  text-align: center; padding: 100px 5%; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 1rem; position: relative;
}
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; position: relative; }

/* =====================
   CONTACT
   ===================== */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: var(--off-white);
  border-radius: 14px; margin-bottom: 0.75rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--red-soft);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail span  { font-size: 0.82rem; color: var(--gray-600); }
.contact-detail strong { display: block; font-size: 0.9rem; margin-top: 0.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--gray-600);
}
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-100); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--dark); background: white;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--red); color: white; border: none;
  padding: 1rem 2.5rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(232,25,44,0.3);
}
.btn-submit:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-msg {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
}
.form-msg.success { background: #F0FFF4; color: #2D7D46; border: 1px solid #A7F3C4; }
.form-msg.error   { background: var(--red-soft); color: var(--red); border: 1px solid rgba(232,25,44,0.2); }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--dark); color: white;
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 1rem;
}
.footer-logo span { color: var(--red); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: white; padding: 1.5rem 5% 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    gap: 1.25rem; border-top: 1px solid var(--gray-100);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  section { padding: 70px 4%; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================
   WORDPRESS SPECIFIC
   ===================== */
.wp-block-image { margin: 1rem 0; }
.aligncenter { text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* =====================
   ELEMENTOR COMPATIBILITY
   ===================== */

/* Remove default margins Elementor adds */
.elementor-section-wrap,
.elementor-inner,
.e-container {
  max-width: 100% !important;
}

/* Ensure Elementor pages are full width */
.elementor-page #main-content,
body.elementor-page #main-content {
  padding: 0;
  margin: 0;
}

/* Fix padding top for fixed navbar on Elementor pages */
body.elementor-page {
  padding-top: 0;
}

/* Full width canvas for Elementor */
.elementor-template-canvas #main-content {
  padding-top: 0 !important;
}

/* WebsAura brand colors as CSS custom properties for Elementor */
:root {
  --e-global-color-primary:   #E8192C;
  --e-global-color-secondary: #0D0D14;
  --e-global-color-text:      #4A4A5A;
  --e-global-color-accent:    #E8192C;
}
