/* Global settings */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* Headline */
h1, .headline {
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.02em;    /* -20 tracking */
    text-transform: none;
}

/* Sub-headline */
h2, .sub-headline {
    font-weight: 600;           /* Semi-bold or Medium */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Body Copy */
p, .body-text {
    font-weight: 300;           /* Light */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Specification Label */
.spec-label {
    font-weight: 900;           /* Black */
    font-style: italic;
    letter-spacing: 0.04em;     /* +40 tracking */
    text-transform: none;
}


/* Headline */
h1, .headline {
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.02em;    /* -20 tracking */
    text-transform: none;
}

/* Sub-headline */
h2, .sub-headline {
    font-weight: 600;           /* Semi-bold or Medium */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Body Copy */
p, .body-text {
    font-weight: 300;           /* Light */
    letter-spacing: -0.02em;
    text-transform: none;
}

/* Specification Label */
.spec-label {
    font-weight: 900;           /* Black */
    font-style: italic;
    letter-spacing: 0.04em;     /* +40 tracking */
    text-transform: none;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays above other content */
    /* Remove the solid background color to allow the transparent nav to show the image */
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px; /* Adjust the padding to better fit your logo and button */
    background-color: rgba(0, 0, 0, 0.7); /* This provides the dark transparent background */
    height: 40px; /* Adjusted for a thinner header */
    /* Rest of your styles... */
}

.logo-link {
    display: flex;
    align-items: center;
    /* No padding needed if you're using margin on the logo itself */
}

.logo {
    height: 30px; /* Adjust for a visible logo size */
    width: auto; /* Keeps the aspect ratio of the logo */
    /* No negative margin, adjust the actual header height instead */
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center; /* This will vertically center your nav items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    padding: 0 5px;
    margin: 0; /* Ensure there's no additional space from margins */
    line-height: 1;
    /* You can add line-height or padding here if you need to adjust the vertical alignment */
}

/* Navigation links styling */
.nav-links a {
    text-decoration: none; /* Removes underline by default */
    color: #ffffff; /* White text color */
    font-size: 1rem; /* Adjust the font size as needed */
    padding: 10px 15px; /* Padding for better click area */
    display: block; /* Makes the anchor tag fill the list item */
    transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* Hover effect for navigation links */
.nav-links a:hover, .nav-links a:focus {
    color: #1a9e8c; /* Changes text color to aquamarine on hover and focus */
}

header .buy-now, a.buy-now-button {
    display: inline-flex; /* Use flexbox for centering */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    background-color: #18B19C !important; /* Green background */
    color: white !important; /* White text */
    text-decoration: none !important; /* Remove underline */
    padding: 5px 15px !important; /* Smaller padding for a smaller button */
    border: none !important; /* Remove border */
    border-radius: 25px !important; /* Rounded corners */
    font-size: 1rem !important; /* Slightly smaller font size */
    font-weight: bold !important; /* Bold text */
    cursor: pointer !important; /* Pointer cursor */
    transition: background-color 0.3s ease, transform 0.3s ease !important; /* Smooth transitions */
    text-align: center !important; /* Ensure centered text */
    line-height: normal; /* Reset line-height for consistency */
}



/* Hover Effect for the Buy Now Button */
header .buy-now:hover, a.buy-now-button:hover {
    background-color: #149483 !important; /* Darker green on hover */
    color: white !important; /* Ensure text remains white */
}

/* Responsive Styling for Smaller Devices */
@media (max-width: 768px) {
    header .buy-now, a.buy-now-button {
        font-size: 1.2rem !important; /* Slightly larger font size for mobile */
        padding: 15px 30px !important; /* Larger padding for tap area */
    }
}

/* Target the Buy Now button in the navbar */
header nav .nav-links .buy-now-button {
    display: inline-block;
    background-color: #18B19C; /* Green background */
    color: white; /* White text */
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for click area */
    border: 0px solid #18B19C; /* Green border */
    border-radius: 25px; /* Rounded corners */
    font-size: 0.8rem; /* Standard font size */
    font-weight: bold; /* Bold text for emphasis */
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-left: 10px; /* Spacing from other nav items */
    white-space: nowrap; /* Prevents text wrapping */
}

/* Hover effect for the Buy Now button */
header nav .nav-links .buy-now-button:hover {
    background-color: #18B19C; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav .nav-links .buy-now-button {
        font-size: 1.2rem; /* Increase font size for smaller screens */
        padding: 15px 40px; /* Larger padding for better tap area */
        width: 100%; /* Take up more width on mobile */
        text-align: center; /* Center-align text */
        margin: 10px auto; /* Center the button in the navbar */
    }
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden by default for larger screens */
    cursor: pointer;
    font-size: 30px;
    color: white;
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal layout by default */
}

.nav-links li {
    margin: 0 -10px; /* Closer spacing for large screens */
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #18B19C; /* Highlight color */
}

/* Mobile Menu Styles */
@media (max-width: 768px) {

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: white;
        transition: transform 0.3s ease;
        z-index: 2000; /* Ensure it stays above the navbar */
    }

    /* Add a rotation effect or change icon for "open" state */
    .hamburger.open {
        transform: rotate(90deg); /* Rotate for open state (optional) */
    }

    /* Ensure the hamburger is always visible */
    .nav-links {
        z-index: 1500; /* Menu is below the hamburger */
        position: fixed; /* Ensure it doesn't hide the hamburger */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0; /* Initially hidden */
        transform: translateY(20px);
        font-size: 4rem; /* Larger text size for mobile titles */
        font-weight: bold; /* Make titles bold */
        animation: fadeInUp 0.5s forwards;
    }

    .nav-links.active li {
        animation: fadeInUp 0.5s forwards; /* Fade-in animation */
    }

    .nav-links.exiting li {
        animation: fadeOutDown 0.5s forwards; /* Reverse fade-out animation */
    }

    .nav-links li a {
        text-decoration: none;
        color: white;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .nav-links li a.clicked {
        transform: scale(1.2); /* Slightly enlarge on click */
        color: #1abc9c; /* Highlight color */
    }

    @keyframes fadeInSmooth {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeOutSmooth {
        0% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    /* Ensure animations retain their end states */
    .nav-links li {
        animation-fill-mode: forwards; /* Retain the final animation state */
        will-change: opacity, transform; /* Optimize performance */
    }
}

/* Media Query for Larger Screens */
@media (min-width: 769px) {
    .nav-links li {
        margin: 0 5px; /* Closer spacing between links */
    }

    .nav-links li a {
        font-size: 1rem; /* Keep default size on larger screens */
    }
}
  
/* ===== Holiday Lights Under Nav (final polished version) ===== */

.holiday-lights {
  position: absolute;
  left: 0;
  top: 100%;               /* right below nav */
  margin-top: 4px;         /* adjust closer/tighter here */
  width: 100%;
  height: 28px;

  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;

  pointer-events: none;
  z-index: 1001;
}

/* Bulb base */
.light-bulb {
  position: relative;
  width: 14px;
  height: 20px;
  border-radius: 50% 50% 55% 55%;
  
  /* Glow */
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.7));

  /* Twinkle + sway */
  animation:
    sway 3s ease-in-out infinite alternate,
    twinkle 2.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.28s); /* staggered bulbs */
}

/* Cap */
.light-bulb::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  border-radius: 2px;
  background: rgba(20, 20, 20, 0.9);
}

/* Colors + glow */
.light-bulb.red {
  background: #ff4b5c;
  box-shadow: 0 0 12px rgba(255, 75, 92, 0.9);
}

.light-bulb.green {
  background: #3ad47d;
  box-shadow: 0 0 12px rgba(58, 212, 125, 0.9);
}

.light-bulb.gold {
  background: #ffd76a;
  box-shadow: 0 0 12px rgba(255, 215, 106, 0.95);
}

.light-bulb.blue {
  background: #5ab5ff;
  box-shadow: 0 0 12px rgba(90, 181, 255, 0.95);
}

/* ===== ANIMATIONS ===== */

/* Gentle sway */
@keyframes sway {
  0%   { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}

/* Glow twinkle */
@keyframes twinkle {
  0%, 100% {
    opacity: 0.90;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.35);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .holiday-lights {
    margin-top: 3px;
    height: 22px;
  }

  .light-bulb {
    width: 10px;
    height: 14px;
  }

  .holiday-lights::before {
    top: 2px; /* keep lined up on mobile */
  }
}

#rf-snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;     /* ❄️ lets user click normally */
  z-index: 999;             /* above everything except nav or lights */
}
/* ================= Root (brand + base) ================= */
:root{
  --text: #101312;
  --muted: #5b6462;

  /* Brand based on #18b19c */
  --brand: #18b19c;
  --brand-300: #61d1c0;  /* tint */
  --brand-500: #18b19c;  /* base */
  --brand-600: #118a7d;  /* shade */
  --brand-700: #0e7065;  /* deeper shade */

  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 999px;

  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.75rem;
  --space-6: 2rem;

  --container: 1100px;
}

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

html, body{
  margin:0;
  padding:0;
  background:#fff;                 /* pure white background */
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height:1.55;
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* Respect motion prefs; keep UI snappy */
@media (prefers-reduced-motion: no-preference){
  :root{ scroll-behavior:smooth; }
}

/* ================= Layout ================= */
main{
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 28px);
}

/* ================= HERO ================= */
.hero{
  text-align:center;
  padding: clamp(28px, 6vw, 56px);
  margin: 8px auto var(--space-6);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24,177,156,0.06), rgba(24,177,156,0.02));
  border: 1px solid rgba(24,177,156,0.12);
}
.hero h1{
  margin:0 0 var(--space-2);
  font-weight:800;
  letter-spacing:-0.02em;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.hero p{
  margin:0 auto;
  max-width:60ch;
  color:var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
}
.hero .hero-tagline{
  margin-top:var(--space-2);
  color:var(--brand-700);
  font-weight:600;
}

/* Help Page Theme — matches rf-chatbot.css accent and sizing */
:root{
  --rf-teal:#18B19C;
  --rf-teal-600:#119c89;
  --rf-bg:#f7f9f9;
  --rf-panel:#ffffff;
  --rf-text:#111111;
  --rf-muted:#6a6a6a;
  --rf-border:#e6ecec;
  --rf-radius:18px;
  --rf-shadow:0 14px 32px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.12);
  --rf-font:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --rf-base:17px;
  --rf-xl:24px;
  --rf-xxl:34px;
}

html,body{background:var(--rf-bg); color:var(--rf-text); font:500 var(--rf-base)/1.55 var(--rf-font); margin:0;}
.container{max-width:1000px; margin:0 auto; padding:0 16px;}

/* Hero / header */
.help-hero{padding:32px 0 18px;}
.help-title{font:800 var(--rf-xxl)/1.1 var(--rf-font); margin:0 0 10px;}
.help-sub{font:600 18.5px/1.4 var(--rf-font); color:var(--rf-muted); margin:0 0 18px;}

/* Callout card (same look as chatbot callout) */
.rf-help-card{
  width:100%;
  text-align:left;
  background:var(--rf-panel);
  border:2px solid var(--rf-teal);
  border-radius:20px;
  box-shadow:var(--rf-shadow);
  padding:20px 22px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 16px;
  align-items:center;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}
.rf-help-card:hover{transform:translateY(-1px); box-shadow:0 18px 40px rgba(0,0,0,.12),0 6px 8px rgba(0,0,0,.08); border-color:var(--rf-teal-600);}
.rf-help-card:active{transform:translateY(0);}
.rf-help-card:focus{outline:3px solid #93f2e7; outline-offset:3px;}

.rf-help-title{grid-column:1/-1; font:800 28px/1.15 var(--rf-font);}
.rf-help-sub{grid-column:1/2; color:var(--rf-muted); font:700 18px/1.35 var(--rf-font);}
.rf-help-cta{
  grid-column:2/3; justify-self:end;
  background:var(--rf-teal); color:#fff; padding:12px 18px; border-radius:999px;
  font:900 17px/1 var(--rf-font); border:2px solid var(--rf-teal);
}
.rf-help-card:hover .rf-help-cta{background:var(--rf-teal-600); border-color:var(--rf-teal-600);}

@media (max-width:560px){
  .rf-help-card{grid-template-columns:1fr;}
  .rf-help-cta{justify-self:start; margin-top:6px;}
}

#rf-launcher{ display:none !important; }

/* Popular topic links */
.help-topics{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 6px;}
.help-topics .topic{
  display:inline-block; text-decoration:none; color:var(--rf-text); background:#fff;
  border:1.5px solid var(--rf-border); border-radius:999px; padding:10px 14px;
  font:800 16px/1 var(--rf-font);
}
.help-topics .topic:hover{border-color:var(--rf-teal);}

/* Buttons / links general */
a{color:var(--rf-teal); text-decoration:none;}
a:hover{text-decoration:underline;}

/* Dark mode polish */
@media (prefers-color-scheme:dark){
  :root{ --rf-bg:#0f1010; --rf-panel:#141414; --rf-text:#f5f7f7; --rf-muted:#a9b2b2; --rf-border:#2a2f2f; }
  .rf-help-card{background:var(--rf-panel);}
  .help-topics .topic{background:#171818; color:var(--rf-text); border-color:var(--rf-border);}
}


/* ================= CARDS (Green gradient badges) ================= */
.cards{ margin: 0 auto var(--space-6); }
.cards-list{
  list-style:none; padding:0; margin:0;
  display:grid; gap: clamp(12px, 2vw, 18px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card{
  color:#fff;
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display:flex; flex-direction:column; align-items:flex-start;
  background:
    linear-gradient(135deg, var(--brand-300), var(--brand-500) 45%, var(--brand-600));
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 8px 18px rgba(17,138,125,0.18);
  transform: translateZ(0); /* promote for crispness */
}
.card h3{ margin:0 0 var(--space-2); font-size:1.15rem; letter-spacing:-0.01em; }
.card p{ margin:0 0 var(--space-4); }

/* Liquid-glass button (subtle, no heavy effects) */
.card-btn{
  display:inline-block;
  padding:.7rem 1.1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  color: var(--brand-700);
  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 6px 12px rgba(0,0,0,0.06);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  will-change: transform;
}
.card-btn:hover{
  transform: translateY(-1px);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 10px 18px rgba(0,0,0,0.08);
}
.card-btn:focus-visible{
  outline: 3px solid rgba(24,177,156,0.45);
  outline-offset:2px;
}

/* ================= FAQ (fast, no lag) ================= */
/* Approach: native <details> with ZERO height/opacity animations.
   Only rotate the caret; avoids layout thrash and jank. */
.faq{ margin: 0 auto var(--space-6); }
.faq .faq-wrapper{ max-width:900px; margin:0 auto; }
.faq h2{ margin:0 0 var(--space-3); font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
.accordion{ display:grid; gap: 12px; }

.faq-item{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24,177,156,0.35);
  overflow:hidden;
  background: #fff;
}

/* Summary styled as gradient-green button */
.faq-question{
  list-style:none;
  cursor:pointer;
  padding: 1rem 1.125rem 1rem 1.125rem;
  margin:0;
  font-weight:700;
  color:#fff;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-500) 45%, var(--brand-600));
  position:relative;
  user-select:none;
}
.faq-question::-webkit-details-marker{ display:none; }
.faq-question::after{
  content:"▸";
  font-size:1.05rem;
  position:absolute; right: 14px; top:50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .12s ease; /* cheap transform only */
  color:#fff;
}
.faq-item[open] .faq-question::after{
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer{
  padding: var(--space-3) var(--space-4) var(--space-4);
  background:#fafafa;
  color:var(--text);
  border-top: 1px solid rgba(24,177,156,0.20);
}
.faq-answer a{
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(24,177,156,0.35);
}
.faq-answer a:hover{ border-bottom-color: var(--brand-700); }

/* ================= “Still have questions?” + Support ================= */
.more-faq{
  margin-top: var(--space-5);
  display:flex; flex-wrap:wrap; align-items:center; gap: .75rem;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24,177,156,0.06), rgba(24,177,156,0.02));
  border: 1px solid rgba(24,177,156,0.14);
}
.more-faq p{
  margin:0;
  font-weight:600;
  color: var(--brand-700);
}
.more-faq-link{
  display:inline-block;
  padding:.65rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  color: var(--brand-700);
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(24,177,156,0.35);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.more-faq-link:hover{ transform: translateY(-1px); background:#fff; }

/* Support block: split layout on wide, stacked on mobile */
.support{
  margin-top: var(--space-6);
}
.support-wrapper{
  max-width: 900px; margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(24,177,156,0.08), rgba(24,177,156,0.04));
  border: 1px solid rgba(24,177,156,0.16);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 3vw, 28px);
}
#support-title{
  margin:0 0 var(--space-3);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  color: var(--brand-700);
}
.support-info{
  display:grid; gap: 12px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
.support-info p{ margin:.25rem 0; }
.support-info a{
  color: var(--brand-700);
  font-weight:700;
  text-decoration:none;
  border-bottom:2px solid rgba(24,177,156,0.35);
}
.support-info a:hover{ border-bottom-color: var(--brand-700); }

/* Add a compact “contact card” look on the right */
.support-info::after{
  content:"";
  display:block;
}
.support-info > :is(p, a){ font-size:1rem; }

/* Responsive stack for support */
@media (max-width: 780px){
  .support-info{
    grid-template-columns: 1fr;
  }
}

/* ================= Responsive tweaks ================= */
@media (max-width: 640px){
  .card{ padding: var(--space-4); }
  .card h3{ font-size:1.05rem; }
  .card-btn{ padding:.65rem 1rem; }
}

/* ================= Focus styles ================= */
:focus-visible{
  outline: 3px solid rgba(24,177,156,0.45);
  outline-offset: 2px;
}



/* Footer Styles */
.site-footer {
    background-color: #414141; /* Dark grey background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative; /* To ensure footer-bottom can align correctly */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Navigation, Social Media, and Info */
.footer-nav,
.footer-social,
.footer-info {
    flex: 1 1 calc(33.33% - 20px); /* Responsive grid */
    min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
    color: #ccc; /* Light grey links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
    color: #02917a; /* Green hover color */
}

/* Footer Info Section */
.footer-info {
    font-size: 0.9rem;
    color: #ccc; /* Light grey text */
    line-height: 1.6; /* Better readability */
}

.footer-info p {
    margin: 10px 0; /* Add spacing between lines */
}

.footer-info a {
    color: #18B19C; /* Replace with your brand's specific green color code */
    text-decoration: none; /* Optional: removes underline from the link */
}

.footer-info a:hover {
    color: #016954; /* Darker green for hover, adjust as needed */
    text-decoration: underline; /* Optional: adds underline on hover for better usability */
}


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb; /* Lighter grey for bottom text */
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem; /* Slightly larger for clarity */
    font-weight: bold; /* Make Reel Free stand out */
    color: #fff;
}

.footer-brand {
    font-weight: 700; /* Bold */
    color: #fff;
}

.footer-year {
    font-weight: 500; /* Medium */
    color: #ccc;
}

.footer-rights {
    font-weight: 300; /* Light */
    color: #bbb;
}

.footer-divider {
    margin: 0 0.3rem;
    color: #999;
}

/* Media Query for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        align-items: center;
        text-align: center;
    }

    .footer-nav,
    .footer-social,
    .footer-info {
        flex: 1 1 100%; /* Each section takes full width */
        margin-bottom: 20px; /* Add spacing between stacked sections */
    }

    .footer-bottom {
        margin-top: 20px; /* Adjust margin for smaller screens */
    }
}

/* ===========================
   Footer Chatbot Launcher
   =========================== */

   .footer-chat {
    /* mobile: flows under contact email */
    margin-top: 14px;
  }
  
  .rf-chatnote {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #9fd8cf; /* subtle teal tint under dark footer */
  }
  
  /* The pill button with two words: Help • Chat */
  .rf-chatbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 0;
    background: #18B19C;         /* brand teal */
    color: #0c2b27;               /* ink on teal */
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 24, 43, 0.18);
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .rf-chatbtn:hover { transform: translateY(-1px); }
  .rf-chatbtn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(2, 24, 43, 0.16); }
  .rf-chatbtn:focus-visible { outline: 3px solid #33c9b5; outline-offset: 2px; }
  
  .rf-chatbtn-help { opacity: 0.95; }
  .rf-chatbtn-dot  { opacity: 0.75; }
  .rf-chatbtn-chat {
    background: #ffffff;
    color: #09443c;
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
    font-weight: 800;
  }
  
  /* Desktop positioning: attach to bottom-right corner of the footer */
  @media (min-width: 768px) {
    .site-footer {
      position: relative; /* already present, ensures absolute positioning is relative */
    }
    .footer-chat {
      position: absolute;
      right: 18px;
      bottom: 18px;
      margin-top: 0; /* override mobile spacing */
      text-align: right;
    }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rf-chatbtn { transition: none !important; }
  }
  