/* ============================================================
   FOOTER.CSS  —  Showtime Novelties
   Navy Space Theme — Upgraded
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
    --navy-900: #060d1a;
    --navy-800: #0a1628;
    --navy-700: #0d1f3c;
    --navy-600: #132d52;
    --navy-500: #1b3a5c;
    --navy-400: #1e4a75;

    --blue-500: #4a90d9;
    --blue-400: #6aaae5;
    --blue-300: #8ab4e8;
    --blue-200: #b5d4f4;
    --blue-100: #ddeeff;

    --accent-orange: #FF9800;
    --accent-pink:   #E91E63;
    --accent-grad:   linear-gradient(135deg, #FF9800 0%, #E91E63 100%);
    --navy-grad:     linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
    --blue-grad:     linear-gradient(135deg, var(--navy-500) 0%, var(--blue-500) 100%);

    --text-light:    rgba(200, 214, 229, 0.85);
    --text-muted:    rgba(138, 180, 232, 0.6);
    --border-subtle: rgba(74, 144, 217, 0.12);
    --border-glow:   rgba(74, 144, 217, 0.35);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-pill: 100px;

    --transition-fast:   0.18s ease;
    --transition-base:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm:  0 2px 8px rgba(6, 13, 26, 0.25);
    --shadow-md:  0 6px 24px rgba(6, 13, 26, 0.35);
    --shadow-lg:  0 12px 48px rgba(6, 13, 26, 0.45);
    --glow-blue:  0 0 24px rgba(74, 144, 217, 0.25);
    --glow-blue-lg: 0 0 48px rgba(74, 144, 217, 0.2);
}

/* ── Feedback Button ────────────────────────────────────── */
.feedback-btn {
    position: fixed;
    right: -42px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    background: var(--blue-grad);
    color: #fff;
    padding: 11px 26px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 1000;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: right var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.feedback-btn:hover {
    right: -36px;
    background: var(--accent-grad);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 152, 0, 0.3);
}

/* ── Footer Top Section ─────────────────────────────────── */
.footer-top-section .footer-section {
 background: linear-gradient(
  180deg,
  #02050b 0%,
  #050a14 40%,
  #0a0e16 70%,
  #000000 100%
);
  
  padding-bottom: 30px;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #9595b6;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index:10;
}

.footer-top-section .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-image:
        radial-gradient(1.5px 1.5px at  8% 12%, rgba(255,255,255,0.60) 0%, transparent 100%),
        radial-gradient(1px   1px   at 19% 38%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(2px   2px   at 31%  8%, rgba(200,214,229,0.70) 0%, transparent 100%),
        radial-gradient(1px   1px   at 44% 55%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 57% 22%, rgba(138,180,232,0.60) 0%, transparent 100%),
        radial-gradient(2px   2px   at 69% 48%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1px   1px   at 78% 15%, rgba(200,214,229,0.50) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 62%, rgba(255,255,255,0.40) 0%, transparent 100%),
        radial-gradient(1px   1px   at 12% 75%, rgba(255,255,255,0.30) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 25% 90%, rgba(138,180,232,0.45) 0%, transparent 100%),
        radial-gradient(1px   1px   at 50% 82%, rgba(200,214,229,0.35) 0%, transparent 100%),
        radial-gradient(2px   2px   at 63%  5%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(1px   1px   at 82% 78%, rgba(255,255,255,0.30) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 93% 88%, rgba(138,180,232,0.40) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-top-section .footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(74,144,217,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 30%, rgba(138,180,232,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-top-section .footer-section > .container {
    position: relative;
    z-index: 1;
}

/* ── Company Logo ────────────────────────────────────────── */
.footer-top-section .company-logo-section {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0;
}

.footer-top-section .company-logo-section p {
    color: var(--blue-300);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-top-section .company-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 20px rgba(74, 144, 217, 0.4));
    transition: filter var(--transition-base), transform var(--transition-base);
    margin-bottom: 40px;
}

.footer-top-section .company-logo img:hover {
    filter: brightness(1.25) drop-shadow(0 8px 32px rgba(74, 144, 217, 0.6));
    transform: translateY(-3px);
}

/* ── Feature Boxes ───────────────────────────────────────── */
.footer-top-section .features-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: -48px;
    padding-bottom: 4px;
}

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.footer-top-section .feature-box {
  flex: 1;
  min-width: 150px  !important; 
  text-align: center;
  padding: 26px 18px 22px;
  border-radius: 14px;
font-family: 'Fredoka', sans-serif;
  position: relative;
  overflow: visible;          /* must be visible for glow to bleed out */
  background: linear-gradient(145deg, rgb(255 0 0 / 92%), rgb(0 33 165 / 97%));
  isolation: isolate;
  --border-angle: 0deg;
  margin-right:40px;
  animation:
    orbit-border 4s linear infinite,
    space-pulse  6s ease-in-out infinite;
}

/* ── Orbiting multicolor border ── */
.footer-top-section .feature-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    #ff2d78 0%, #ff6b35 12%, #ffd700 25%,
    #00e5ff 37%, #7b2fff 50%, #ff2d78 62%,
    #00ff88 75%, #ff6b35 87%, #ff2d78 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: orbit-border 4s linear infinite;
  filter: blur(0.4px);
}

/* ── Nebula glow halo ── */
.footer-top-section .feature-box::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: conic-gradient(
    from var(--border-angle),
    rgba(255,45,120,0.25)  0%,
    rgba(0,229,255,0.18)  25%,
    rgba(123,47,255,0.22) 50%,
    rgba(0,255,136,0.15)  75%,
    rgba(255,45,120,0.25) 100%
  );
  filter: blur(14px);
  z-index: -2;
  animation: orbit-border 4s linear infinite;
}

@keyframes orbit-border {
  to { --border-angle: 360deg; }
}

/* ── Pulsing multicolor shadow ── */
@keyframes space-pulse {
  0%,100% { box-shadow: 0 0 18px rgba(123,47,255,0.35), 0 0 40px rgba(0,229,255,0.12), 0 8px 32px rgba(0,0,0,0.7); }
  25%      { box-shadow: 0 0 22px rgba(255,45,120,0.40), 0 0 50px rgba(255,107,53,0.15), 0 8px 36px rgba(0,0,0,0.75); }
  50%      { box-shadow: 0 0 20px rgba(0,229,255,0.45), 0 0 55px rgba(0,255,136,0.12), 0 10px 40px rgba(0,0,0,0.7); }
  75%      { box-shadow: 0 0 24px rgba(255,215,0,0.35), 0 0 48px rgba(123,47,255,0.18), 0 8px 36px rgba(0,0,0,0.72); }
}

/* ── Hover: faster orbit + lift ── */
.footer-top-section .feature-box:hover {
  transform: translateY(-10px) scale(1.03);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.footer-top-section .feature-box:hover::before,
.footer-top-section .feature-box:hover::after {
  animation-duration: 1.8s;
}
.footer-top-section .feature-box:hover::after {
  filter: blur(20px);
}

/* ── Icon: floating + comet trail ── */
.footer-top-section .feature-icon {
  font-size: 44px;
  margin-bottom: 14px;
  color: var(--blue-500);
  display: inline-block;
  position: relative;
  animation: float-icon 5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px currentColor);
  transition: color var(--transition-base);
}

@keyframes float-icon {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}

.footer-top-section .feature-icon::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 3px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.4;
  filter: blur(3px);
  animation: comet-trail 3s ease-in-out infinite;
}

@keyframes comet-trail {
  0%,100% { width: 18px; opacity: 0.3; }
  50%      { width: 50px; opacity: 0.7; }
}

.footer-top-section .feature-box:hover .feature-icon {
  transform: scale(1.12);
  color: var(--navy-500);
}

.footer-top-section .feature-icon i {
    display: block;
}

.footer-top-section .feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgb(251, 255, 143);
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.footer-top-section .feature-title .highlight {
    color: white;
}

.footer-top-section .feature-title .blue-highlight {
    color: rgb(249, 213, 11);
}

.footer-top-section .feature-description {
    color: #76a8ff;
    font-size: 12.5px;
    line-height: 1.5;
}

/* ── Social Icons ────────────────────────────────────────── */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(236, 235, 235, 0.379);
    color: white;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid rgba(138, 180, 232, 0.2);
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: rgba(74, 144, 217, 0.18);
    border-color: rgba(138, 180, 232, 0.55);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(74, 144, 217, 0.25);
}

/* ── Footer Links Section ────────────────────────────────── */
.footer-links {
  background: #02050b;
    padding: 60px 0 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-links::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -15%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(74, 144, 217, 0.07) 0%, transparent 65%);
    pointer-events: none;
    animation: nebulaDrift 18s ease-in-out infinite alternate;
}

.footer-links::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -15%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(138, 180, 232, 0.05) 0%, transparent 65%);
    pointer-events: none;
    animation: nebulaDrift 22s ease-in-out infinite alternate-reverse;
}

@keyframes nebulaDrift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -20px) scale(1.05); }
}

.footer-links .container {
    position: relative;
    z-index: 1;
}

.footer-links h5 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    position: relative;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), transparent);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.footer-links .footer-section:hover h5::after {
    width: 48px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
    font-size: 13.5px;
    transition: color var(--transition-fast), padding-left var(--transition-fast), opacity var(--transition-fast);
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    padding: 3px 0;
    line-height: 1.5;
    opacity: 1;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
    opacity: 1;
    text-decoration: none;
}

.footer-links ul li a i {
    font-size: 13px;
    color: var(--blue-500);
    transition: color var(--transition-fast), transform var(--transition-fast);
    min-width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-links ul li a:hover i {
    color: var(--blue-300);
    transform: scale(1.1);
}

/* ── Footer Bottom ──────────────────────────────────────── */
.footer-bottom {
    background: var(--navy-900);
    padding: 22px 0;
    color: rgb(255, 255, 255);
    font-size: 12.5px;
    border-top: 1px solid var(--border-subtle);
    letter-spacing: 0.2px;
}

.footer-bottom a {
    color: var(--blue-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── Chat Button ────────────────────────────────────────── */
/* .chat-button {
    bottom: 28px;
    right: 14px;
    width: 58px;
    height: 58px;
    background: var(--blue-grad);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md), var(--glow-blue);
    border: 1.5px solid rgba(138, 180, 232, 0.2);
    transition: transform var(--transition-spring), box-shadow var(--transition-base), background var(--transition-base);
    z-index: 1000;
}

.chat-button:hover {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-300) 100%);
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-blue-lg);
} */

/* ── Custom Modal Close Button ──────────────────────────── */
.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--blue-200);
    box-shadow: 0 2px 10px rgba(6, 13, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    opacity: 1;
    border: 1px solid rgba(138, 180, 232, 0.2);
    backdrop-filter: blur(4px);
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-color: rgba(138, 180, 232, 0.45);
    box-shadow: 0 4px 16px rgba(74, 144, 217, 0.25);
    outline: none;
    transform: rotate(90deg);
}

.custom-modal-close i {
    pointer-events: none;
}

#feedbackModal .modal-header .btn-close {
    display: none !important;
}

/* ── Category Grid ──────────────────────────────────────── */
div#feedbackCategoryContainer {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 10px;
}

div#feedbackCategoryContainer label.btn {
    border-radius: var(--radius-sm) !important;
    font-size: 0.88rem;
    padding: 0.55rem 0.75rem;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    word-break: break-word;
}

/* ── Footer Link List Alignment ─────────────────────────── */
.footer-section ul li a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-section ul li a i {
    flex-shrink: 0;
    min-width: 18px;
    text-align: center;
    margin-top: 2px;
}

.footer-links ul li a:hover {
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .feedback-side-dialog {
        max-width: 92vw;
    }
}

@media (max-width: 768px) {
    .feedback-btn {
        right: -38px;
        top: 40%;
        font-size: 11px;
        padding: 10px 22px;
    }
     footer-top-section .company-logo-section {
        padding-bottom: 0;
     }
    .footer-top-section .features-container {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 10px;
        gap: 8px;
        padding: 0 4px;
    }

    .footer-top-section .feature-box {
        min-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        padding: 18px 12px 14px;
        margin: 0;
    }

    .footer-top-section .feature-title {
        font-size: 13px;
    }

    .footer-top-section .feature-icon {
        font-size: 36px;
    }

    .footer-top-section .company-logo img {
        max-width: 100px;
        margin:0;
    }

    .social-icons {
        justify-content: center;
        margin-top: 16px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links .col-md-3 {
        margin-bottom: 24px;
    }

    .footer-links ul {
        display: none;
        margin-top: 0;
    }

    .footer-links .footer-section.open ul {
        display: block;
        margin-top: 10px;
        margin-left: 0;
        list-style: none;
    }

    .footer-links h5 {
        cursor: pointer;
        position: relative;
        padding-right: 28px;
        justify-content: left;
    }

    .footer-links h5::after {
        left: 5%;
        transform: translateX(-50%);
        width: 24px;
    }

    .footer-links .footer-section:hover h5::after {
        width: 40px;
    }

    .footer-links h5 .fa-chevron-down {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        transition: transform var(--transition-base);
        color: var(--blue-500);
    }

    .footer-links .footer-section.open h5 .fa-chevron-down {
        transform: translateY(-50%) rotate(180deg);
    }

    .col-md-3.col-12.footer-section h5,
    .footer-links ul li {
        text-align: left;
    }

    .footer-links ul li a {
        justify-content: left;
    }
}

@media (max-width: 767.98px) {
    .feedback-side-dialog {
        max-width: 100vw;
        border-radius: 0;
    }

    .feedback-side-modal .modal-content,
    .feedback-side-modal .modal-header {
        border-radius: 0;
    }

    #feedbackModal .modal-content {
        border-radius: 0;
    }

    .feedback-modal-image {
        display: none !important;
    }

    #feedbackModal .modal-dialog {
        max-width: 100vw;
        width: 100vw;
        margin: 0 !important;
    }

    #feedbackModal .modal-content {
        min-height: 100vh;
    }

    #feedbackModal .modal-header {
        border-radius: 0;
        padding: 1rem 1.25rem;
    }

    .feedback-modal-row {
        min-height: unset;
    }

    .feedback-illustration-img {
        width: 140px;
        height: 140px;
    }

    #feedbackModal .btn-group {
        flex-direction: column;
        width: 100%;
    }

    #feedbackModal .btn-group .btn {
        width: 100% !important;
        font-size: 0.92rem;
        padding: 0.65rem 0.5rem;
        white-space: normal;
        word-break: break-word;
    }

    #feedbackModal .btn-group .btn:first-child {
        border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
    }

    #feedbackModal .btn-group .btn:last-child {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
    }

    div#feedbackCategoryContainer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top-section .feature-box {
        min-width: 100%;
        flex: 1 1 100%;
        margin: 0;
    }

    .footer-top-section .features-container {
        flex-direction: column;
        gap: 10px;
    }

    #feedbackModal .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    #feedbackModal .btn-group .btn {
        width: 100% !important;
        font-size: 0.88rem;
        padding: 0.6rem;
        border-radius: 0 !important;
        white-space: normal;
    }

    #feedbackModal .btn-group .btn:first-child {
        border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
    }

    #feedbackModal .btn-group .btn:last-child {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
    }

    #feedbackModal .modal-dialog {
        margin: 0 !important;
        max-width: 100vw;
    }

    .feedback-side-dialog {
        max-width: 100vw;
        border-radius: 0;
    }

    .feedback-side-modal .modal-content,
    .feedback-side-modal .modal-header {
        border-radius: 0;
    }

    .chat-button {
        width: 52px;
        height: 52px;
        font-size: 21px;
        bottom: 18px;
        right: 12px;
    }

    .feedback-btn {
        right: -40px;
        padding: 9px 20px;
    }
}

/* ── Accessibility / Focus Styles ────────────────────────── */
.feedback-btn:focus-visible,
.chat-button:focus-visible,
.custom-modal-close:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 3px;
}

.footer-links ul li a:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
    border-radius: 3px;
    color: #fff;
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
    .feedback-btn,
    .chat-button,
    #feedbackModal {
        display: none !important;
    }

    .footer-links {
        background: #fff;
        color: #000;
    }

    .footer-links a,
    .footer-links h5 {
        color: #000 !important;
    }
}

/* ====================== FLOATING BUTTONS ====================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
}

.cb1 {
    bottom: 28px;
    right: 14px;
    width: 58px;
    height: 58px;
    background: var(--blue-grad);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md), var(--glow-blue);
    border: 1.5px solid rgba(138, 180, 232, 0.2);
    transition: transform var(--transition-spring), box-shadow var(--transition-base), background var(--transition-base);
    z-index: 1000;
}

.cb1:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4),
                0 0 0 4px rgba(255,255,255,0.15);
}

.floating-buttons2{
     position: fixed;
    bottom: -15px;
    display: flex;
    left: 20px;        /* ← was right, now left */
    z-index: 10001;
}
/* Secondary Button (Top one) */
.floating-buttons2 .secondary-btn {
    position: fixed;
    bottom: 20px;
    left: 135px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    min-width: 127px;
    height: 55px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    background: var(--blue-grad);
    box-shadow: var(--shadow-md), var(--glow-blue);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* ================= MOBILE <= 600px ================= */
@media (max-width: 600px) {

    /* Right floating buttons */
    .floating-buttons {
        bottom: 15px;
        right: 12px;
        gap: 10px;
    }

    .cb1 {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* Left mascot + button container */
    .floating-buttons2 {
        left: 10px;
        bottom: 10px;
        display: flex;
        align-items: flex-end;
    }

    /* mascot image */
    .floating-buttons2 img {
        width: 75px !important;
        height: auto !important;
        max-height: 95px;
    }

    /* secondary text button */
    .floating-buttons2 .secondary-btn {
              bottom: 18px;
        left: 79px;
        min-width: 60px;
        height: 60px;
        padding: 8px 29px;
        font-size: 6px;
        gap: 6px;
        background: var(--blue-grad);
        box-shadow: var(--shadow-md), var(--glow-blue);
        border-radius: 50%;
        flex-direction: column;
        text-align: center;
    }

    .floating-buttons2 .secondary-btn i {
        font-size: 14px;
    }
}