/* AstroWizard Elementor Widgets CSS */

/* ===================== NAVBAR ===================== */
.aw-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--aw-border);
  background: hsla(42, 60%, 95%, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aw-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.aw-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.aw-navbar-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--aw-gold-dark);
}

.aw-navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.aw-nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.aw-nav-list li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--aw-foreground);
  opacity: 0.82;
  transition: color 0.3s, opacity 0.3s;
  text-decoration: none;
}

.aw-nav-list li a:hover,
.aw-nav-list li.current-menu-item a {
  color: var(--aw-gold);
  opacity: 1;
}

.aw-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--aw-foreground);
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .aw-navbar-toggle { display: block; }
  .aw-navbar-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: hsla(42, 60%, 95%, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--aw-border);
    padding: 1.5rem;
    gap: 1rem;
  }
  .aw-navbar-links.aw-nav-open { display: flex; }
  .aw-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .aw-nav-list li,
  .aw-nav-list li a {
    width: 100%;
    text-align: left;
  }
  .aw-navbar-links .aw-btn {
    align-self: flex-start;
  }
}

/* ===================== HERO ===================== */
.awe-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 73px;
  margin-top: -73px;
}

.awe-hero-bg {
  position: absolute;
  inset: 0;
}

.awe-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.awe-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, hsla(42,60%,95%,0.7), hsla(42,60%,95%,0.5), var(--aw-background)),
    linear-gradient(to right, hsla(42,60%,95%,0.75), hsla(42,60%,95%,0.45), transparent);
}

.awe-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.awe-hero-badge {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid hsla(45,92%,54%,0.3);
  background: hsla(42,70%,97%,0.95);
  padding: 0.375rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aw-gold-dark);
  box-shadow: 0 1px 3px hsla(20,42%,10%,0.06);
  margin-bottom: 1.5rem;
}

.awe-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--aw-foreground);
}

.awe-hero-desc {
  font-size: 1.125rem;
  color: var(--aw-foreground);
  opacity: 0.9;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.awe-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.awe-hero-zodiac {
  display: flex;
  align-items: center;
  justify-content: center;
}

.awe-hero-zodiac img {
  width: 450px;
  height: 450px;
  object-fit: contain;
  filter: sepia(0.4) saturate(1.5) hue-rotate(10deg) brightness(1.1) drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}

@media (max-width: 1024px) {
  .awe-hero-inner { grid-template-columns: 1fr; }
  .awe-hero-zodiac { display: none; }
  .awe-hero-title { font-size: 2.5rem; }
}

@media (max-width: 640px) {
  .awe-hero-title { font-size: 2rem; }
  .awe-hero-desc { font-size: 1rem; }
  .awe-hero-buttons { flex-direction: column; }
}

/* ===================== SERVICE CARD HOVER ===================== */
.awe-service-card:hover span { opacity: 1 !important; }

/* ===================== CAROUSEL ===================== */
.awe-carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--aw-muted-foreground);
  transition: border-color 0.3s;
}
.awe-carousel-btn:hover { border-color: hsla(45,92%,54%,0.4); }

.awe-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: var(--aw-border);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.awe-dot.aw-dot-active {
  width: 1.5rem;
  background: var(--aw-gold);
}

/* ===================== FOOTER ===================== */
.aw-footer {
  border-top: 1px solid var(--aw-border);
  background: hsla(41, 62%, 87%, 0.5);
}

.aw-footer-links {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--aw-foreground);
  margin: 0;
}

.aw-footer-links li {
  font-size: 0.9rem;
  color: var(--aw-foreground);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.aw-footer-links li a {
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}

.aw-footer-links li a:hover {
  color: var(--aw-gold-dark);
}

.aw-footer-bottom {
  border-top: 1px solid var(--aw-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--aw-foreground);
  opacity: 0.7;
}

.aw-footer-bottom a {
  transition: color 0.3s;
}
.aw-footer-bottom a:hover { color: var(--aw-gold-dark); }

.aw-footer-exact-container {
  padding: 4rem 1.5rem;
}

.aw-footer-exact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aw-footer-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.aw-footer-brand-logo {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  filter: sepia(0.4) saturate(1.5) hue-rotate(10deg) brightness(1.1);
}

.aw-footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--aw-gold-dark);
}

.aw-footer-tagline {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(20, 17, 10, 0.9);
  line-height: 1.6;
}

.aw-footer-description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(20, 17, 10, 0.78);
  line-height: 1.75;
}

.aw-footer-heading {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--aw-gold-dark);
}

.aw-footer-col-links,
.aw-footer-service-list,
.aw-footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aw-footer-col-links a,
.aw-footer-contact-links a,
.aw-footer-service-list span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(20, 17, 10, 0.8);
  text-decoration: none;
  transition: color 0.25s ease;
}

.aw-footer-col-links a:hover,
.aw-footer-contact-links a:hover {
  color: var(--aw-gold-dark);
}

.aw-footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.aw-footer-contact-links svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.aw-footer-bottom-exact {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.aw-footer-policy-links {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .aw-footer-exact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aw-footer-exact-grid {
    grid-template-columns: 1fr;
  }

  .aw-footer-exact-container {
    padding: 3rem 1rem;
  }
}

/* ===================== MAIN CONTENT PUSH ===================== */
.aw-main { padding-top: 73px; }

/* Blog content */
.aw-blog-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--aw-foreground);
}

.aw-blog-content ul,
.aw-blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.aw-blog-content li {
  margin-bottom: 0.5rem;
}

.aw-blog-content strong {
  color: var(--aw-foreground);
}

/* Exact app route iframe */
.awe-app-frame-wrap {
  width: 100%;
  border: 1px solid var(--aw-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 18, 4, 0.08);
}

.awe-app-frame {
  width: 100%;
  border: 0;
  display: block;
}

/* Keep content visible inside Elementor editor preview iframe. */
.elementor-editor-active .aw-scroll-animate,
.elementor-editor-preview .aw-scroll-animate,
body.elementor-editor-active .aw-scroll-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Floating WhatsApp button style (used by footer widget). */
.aw-whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease;
}

.aw-whatsapp-float:hover {
  transform: scale(1.08);
}

.aw-whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ===================== HEADING COLOR OVERRIDE ===================== */
.aw-container h1,
.aw-container h2,
.aw-container h3,
.aw-container h4,
.awx-container h1,
.awx-container h2,
.awx-container h3,
.awx-container h4,
.aw-footer-heading,
.aw-footer-brand-text,
.aw-navbar-logo-text,
.awe-hero-title,
.awx-title,
.awx-h2 {
  color: #664f10 !important;
  font-weight: 700 !important;
}

.aw-text-gradient-gold,
.awx-title span {
  background: none !important;
  color: #664f10 !important;
  -webkit-text-fill-color: #664f10 !important;
}

/* ===================== ABOUT & CONTACT SECTION WIDGETS ===================== */
.awx-section {
  padding: 2.5rem 0;
}

.awx-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.awx-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--aw-gold);
  margin-bottom: 0.75rem;
}

.awx-title,
.awx-h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--aw-foreground);
  line-height: 1.2;
}

.awx-title {
  font-size: 2.4rem;
  text-align: center;
}

.awx-title span {
  color: var(--aw-gold-dark);
}

.awx-h2 {
  font-size: 2rem;
}

.awx-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.awx-heading p {
  margin: 0.75rem 0 0;
  color: rgba(20, 17, 10, 0.72);
  line-height: 1.75;
}

.awx-image-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--aw-border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 18, 4, 0.09);
  margin: 1.75rem auto;
}

.awx-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.awx-prose {
  max-width: 840px;
  margin: 0 auto;
}

.awx-prose p {
  margin: 0 0 1rem;
  color: rgba(20, 17, 10, 0.76);
  line-height: 1.9;
}

.awx-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.awx-stat-card {
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  box-shadow: 0 6px 16px rgba(30, 18, 4, 0.06);
  padding: 1.4rem 1rem;
}

.awx-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aw-gold-dark);
}

.awx-stat-label {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(20, 17, 10, 0.66);
}

.awx-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.awx-feature-card {
  border-radius: 14px;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(30, 18, 4, 0.06);
}

.awx-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--aw-foreground);
}

.awx-feature-card p {
  margin: 0;
  color: rgba(20, 17, 10, 0.72);
  line-height: 1.75;
}

.awx-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.awx-contact-item {
  border-radius: 12px;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  padding: 0.9rem;
}

.awx-contact-item-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(20, 17, 10, 0.58);
  margin-bottom: 0.35rem;
}

.awx-contact-item a,
.awx-contact-item span {
  color: var(--aw-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.awx-contact-item a:hover {
  color: var(--aw-gold-dark);
}

.awx-founders {
  margin-top: 2rem;
}

.awx-founders h3 {
  margin: 0 0 0.85rem;
  font-family: 'Playfair Display', serif;
  color: var(--aw-foreground);
}

.awx-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.awx-founder-card {
  border-radius: 12px;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  padding: 0.95rem;
}

.awx-founder-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--aw-foreground);
}

.awx-founder-card p {
  margin: 0.2rem 0 0.4rem;
  color: rgba(20, 17, 10, 0.68);
  font-size: 0.85rem;
}

.awx-founder-card a {
  color: var(--aw-gold-dark);
  font-size: 0.82rem;
  text-decoration: none;
}

.awx-contact-form-wrap {
  max-width: 760px;
}

.awx-contact-form-card {
  border-radius: 16px;
  border: 1px solid var(--aw-border);
  background: var(--aw-card);
  padding: 1.25rem;
  box-shadow: 0 8px 22px rgba(30, 18, 4, 0.07);
}

.awx-contact-form-card p {
  margin: 0;
  color: rgba(20, 17, 10, 0.68);
}

@media (max-width: 900px) {
  .awx-stat-grid,
  .awx-feature-grid,
  .awx-contact-list,
  .awx-founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .awx-title {
    font-size: 1.9rem;
  }

  .awx-h2 {
    font-size: 1.6rem;
  }

  .awx-stat-grid,
  .awx-feature-grid,
  .awx-contact-list,
  .awx-founders-grid {
    grid-template-columns: 1fr;
  }

  .awx-image-frame img {
    height: 220px;
  }
}
