.elementor-877 .elementor-element.elementor-element-2773baa{--display:flex;}.elementor-877 .elementor-element.elementor-element-ab06c3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-822f601 *//* HERO SECTION STRUCTURE */
.guardian-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guardian-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.28; /* makes the lightning soft behind text */
    filter: blur(3px) brightness(1.4);
}

/* DARK LAYER + GLOW */
.guardian-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,20,40,0.2), rgba(0,0,0,0.9));
    backdrop-filter: blur(6px);
}

/* TITLE TEXT WITH INSANE EFFECTS */
.guardian-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    color: #EAF4FF;
    text-shadow:
        0 0 15px #42A5FF,
        0 0 35px rgba(66,165,255,0.6),
        0 0 60px rgba(66,165,255,0.3);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 10;
}

/* SUBTEXT */
.guardian-sub {
    margin-top: 18px;
    text-align: center;
    font-size: 1.25rem;
    color: #C6E7FF;
    opacity: 0;
    animation: fadeSlide 2s ease forwards 1.1s;
    z-index: 10;
}

/* TEXT ANIMATIONS */
@keyframes pulseGlow {
    0% { text-shadow: 0 0 15px #42A5FF; }
    50% { text-shadow: 0 0 35px #00C8FF, 0 0 70px #0096FF; }
    100% { text-shadow: 0 0 15px #42A5FF; }
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* GLOBAL STYLE CLEAN-UP
-----------------------------------*/
body {
    font-family: 'Inter', sans-serif;
    background: #000710;
    color: #EAF4FF;
}

/* ---------------------------
   HERO SECTION
-----------------------------*/
.guardian-hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.guardian-bg {
    position: absolute;
    top: 50%; left: 50%;
    width: 120%;
    transform: translate(-50%, -50%);
    opacity: 0.28;
    filter: blur(3px) brightness(1.4);
}
.guardian-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.guardian-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    color: #EAF4FF;
    text-shadow: 0 0 30px #42A5FF;
    animation: pulseGlow 4s ease-in-out infinite;
}
.guardian-sub {
    text-align: center;
    font-size: 1.25rem;
    color: #C6E7FF;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 1.2s ease-out forwards;
}

/* ---------------------------
   REVIEWS GRID
-----------------------------*/
.guardian-reviews {
    padding: 80px 40px;
    text-align: center;
}
.review-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.review-card {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(66,165,255,0.3);
}

/* ---------------------------
   VIDEO POP-OUT GALLERY
-----------------------------*/
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.gallery-card {
    width: 300px;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
    transform: scale(1.06);
    box-shadow: 0 0 40px rgba(0,200,255,0.5);
}

/* ---------------------------
   QUOTE FORM
-----------------------------*/
.guardian-quote {
    padding: 60px 40px;
    text-align: center;
}
.quote-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.quote-form input {
    width: 50%;
    padding: 14px;
    border-radius: 10px;
}
.send-btn,
.book-btn {
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}
.send-btn { background: #FF3B5C; color: white; }
.book-btn { background: #42A5FF; color: white; }

/* ---------------------------
   HOURS SECTION
-----------------------------*/
.guardian-hours {
    padding: 60px 40px;
    text-align: center;
}
.guardian-hours ul {
    list-style: none;
    padding: 0;
}
.guardian-hours li {
    margin: 10px 0;
    font-size: 1.2rem;
}
.phone a {
    color: #42A5FF;
}

/* ANIMATIONS */
@keyframes pulseGlow {
    0% { text-shadow: 0 0 20px #42A5FF; }
    50% { text-shadow: 0 0 40px #00C8FF; }
    100% { text-shadow: 0 0 20px #42A5FF; }
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fbad281 *//* ===== FIXED GUARDIAN BUBBLE ===== */
#guardian-ai-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, #0030ff, #000a22);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(0,120,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999999; /* MAX Z-INDEX */
  color: white;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

/* Bubble Label (Guardian) */
#guardian-ai-btn span {
  display: block;
  font-size: 32px;
  margin-bottom: 2px;
}

/* ===== FIXED CHATBOX ===== */
#guardian-chatbox {
  position: fixed;
  bottom: 110px;
  right: 22px;
  width: 360px;
  height: 500px;
  background: #000814;
  border-radius: 18px;
  box-shadow: 0 0 32px rgba(0,120,255,0.6);
  padding: 16px;
  display: none;
  flex-direction: column;
  z-index: 999999998;
  overflow: hidden;
}

/* Header */
#guardian-chat-header {
  color: #4da3ff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Messages Box */
#guardian-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 12px; /* <-- prevents text input overlap */
}

/* Input Bar */
#guardian-chat-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #ffffff;
  color: #000;
  z-index: 999999999;
}
* {
  z-index: auto !important;
}

#guardian-ai-btn,
#guardian-chatbox {
  position: fixed !important;
  z-index: 999999999 !important;
}/* End custom CSS */