/* ==================================== */
/* === GLOBAL & VARIABLE STYLES === */
/* ==================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* ==================================== */
/* === COLOR VARIABLES === */
/* ==================================== */
:root {
    /* --- Main Theme Colors (Deep Blue/Off-White) --- */
    --primary-blue: #315ca0;
    /* Deep Blue for main accents */
    --off-white: #fcfcfc;
    /* Off-White for light backgrounds */

    /* --- Light Mode Colors --- */
    --light-card-bg: #ffffff;
    /* Pure white for cards */
    --dark-text: #1f2937;
    /* Dark gray for primary text */
    --muted-text: #4b5563;
    /* Muted gray for description text */
    --blue-hover: #264a80;
    /* Slightly darker blue for button hover state */
    --search-bg: #b6c8e4;
    /* Original search bar color */
    --more-btn-bg: #ade0f2;
    /* Original more button color (Now a variable) */

    /* --- Utility Variables --- */
    --accent: var(--primary-blue);
    --line: rgba(49, 92, 160, 0.15);
    /* Subtle border line */
    --muted: var(--muted-text);
    --panel: var(--light-card-bg);
    --panel-2: var(--off-white);
}

/* ==================================== */
/* === GLOBAL BODY STYLES (EDITED) === */
/* ==================================== */
body {
    background-color: var(--off-white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    /* Prevent unwanted gaps */
    padding: 0;
    /* Reset default padding */
    padding-bottom: 70px;
    /* Space for the fixed ticker bar */
    color: var(--dark-text);
    /* Default text color */
    /* REMOVED: overflow-x: hidden; (This was the issue) */
    line-height: 1.6;
    /* Better text readability */
}

/* ==================================== */
/* === 1. HEADER & NAVIGATION STYLES (RESPONSIVE FOCUS) (EDITED) === */
/* ==================================== */

.header {
    background-color: var(--off-white);
    width: 100%;
    /* --- STICKY FUNCTIONALITY IS HERE --- */
    position: sticky;
    top: 0;
    z-index: 1030;
    /* --- END OF STICKY CODE --- */
    height: auto;
    /* Let content decide height */
}

/* Container alignment - ensures proper centering on all devices */
.header>.container {
    display: flex;
    justify-content: space-between;
    /* Space out logo and toggler */
    align-items: center;
    padding: 10px 15px;
    /* Even padding for smaller screens */
}

/* Logo Image */
.logo-image {
    width: 200px;
    height: auto;
    margin: 0;
}

/* Sticky Header */
/* This class is now primarily used for dynamic state changes 
   like adding a box-shadow via JavaScript upon scroll. */
.sticky-header {
    background-color: var(--off-white);
    transition: box-shadow 0.3s ease-in-out;
    z-index: 1030;
}

/* Shadow effect when scrolled */
.header-scrolled {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Menu Collapse (Toggler Content) --- */
#mynavbar {
    background-color: var(--light-card-bg);
    width: 100%;
    border-top: 1px solid var(--line);
}

/* Base Navigation Text */
.nav-text {
    color: var(--primary-blue);
    font-size: 18px;
    padding-left: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
    /* Keeps consistent clickable area */
}

.nav-text:hover {
    color: var(--blue-hover);
}

/* --- Search Bar Input Group --- */
.search-icon-bg {
    background-color: var(--search-bg);
    border-right: none;
    color: var(--primary-blue);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-search-input {
    background-color: var(--search-bg);
    border: 1px solid var(--search-bg);
    border-left: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 250px;
    /* Default width for PC */
    padding-left: 10px;
    outline: none;
    /* Removes blue border when active */
}

.custom-search-input::placeholder {
    color: rgba(49, 92, 160, 0.6);
}

/* Login Button & Icon */
.login-button {
    background-color: var(--primary-blue);
    color: var(--off-white);
    margin-left: 2rem;
    transition: background-color 0.2s ease;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: 500;
}

.login-button:hover {
    background-color: var(--blue-hover);
}

.fa-user-circle {
    color: var(--off-white);
    margin-right: 6px;
}

/* More Options Button (Three Dots) */
.more {
    padding: 0.5rem 0.75rem;
    background-color: var(--more-btn-bg);
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more:hover {
    background-color: #92c9db;
    /* Slightly darker variant */
}

/* ==================================== */
/* === PC / Desktop View (>= 992px) === */
/* ==================================== */
@media (min-width: 992px) {

    /* Force main content display on desktop */
    #mynavbar {
        display: flex !important;
        justify-content: flex-end;
        /* Push content to the right */
        align-items: center;
        flex-grow: 1;
        border-top: none;
        background-color: transparent;
        margin-right: 1.5rem;
        /* Space before login button/dots */
    }

    .header .container {
        justify-content: flex-start;
        /* Align logo left, nav next */
        align-items: center;
    }

    .header .navbar-brand {
        margin-right: 1.5rem;
    }

    /* Ensure the More Options button sits at far right */
    .header>.container>.ms-3:last-child {
        margin-left: auto !important;
    }

    /* Hide Toggler button on large screens */
    .navbar-toggler {
        display: none !important;
    }

    /* Navigation links inline */
    .links-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        margin-left: 0;
        gap: 1rem;
        /* Space between links */
    }
}

/* ==================================== */
/* === MOBILE / Tablet View (< 992px) === */
/* ==================================== */
@media (max-width: 991.98px) {
    /* --- Mobile Toggler Menu Setup --- */

    /* Show the toggler button */
    .navbar-toggler {
        display: block !important;
    }

    /* Stack nav and forms vertically */
    #mynavbar .d-flex {
        flex-direction: column !important;
        align-items: flex-start;
        width: 100%;
        padding: 1rem 0;
    }

    /* Search form width & spacing */
    #mynavbar form {
        width: 90%;
        margin: 0.5rem auto 1rem;
    }

    /* Search input fills width */
    .custom-search-input {
        width: 100% !important;
    }

    /* Vertical navigation links */
    .links-nav {
        flex-direction: column !important;
        width: 100%;
        margin-left: 0 !important;
        padding: 0 5%;
    }

    .nav-text {
        display: block;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .nav-text:last-child {
        border-bottom: none;
    }

    /* Dropdown links full width */
    .dropdown.ms-3 {
        width: 90%;
        margin: 1rem auto 0 auto !important;
    }

    /* Full-width login button inside collapsed menu */
    .login-button {
        width: 90%;
        margin: 1rem auto 0.5rem auto !important;
        text-align: center;
    }

    /* Hide desktop-only "More Options" */
    .header>.container>.ms-3:last-child {
        display: none !important;
    }
}

/* ==================================== */
/* === HERO SECTION STYLES === */
/* ==================================== */

/* The small text above the headline */
.light_heading {
    color: var(--accent);
    /* Uses the primary-blue as accent */
    font-weight: 700;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: slideInLeft 1s ease-out forwards;
}

/* The main headline */
.heading {
    font-weight: 700;
    font-size: 3rem;
    animation: slideInLeft 2s ease-out forwards;
}

/* The sub-headline/description paragraph */
.description {
    color: var(--primary-blue);
    font-size: 1.05rem;
    animation: slideInLeft 3s ease-out forwards;
}

/* Hero Image */
.aqua1 {
    width: 100%;
    animation: flipIn 2s ease-out forwards;
}

/* Primary Button */
.btn1 {
    background-color: var(--primary-blue) !important;
    color: var(--off-white) !important;
    border: none;
    border-radius: 6px;
    width: 49%;
    margin: 3px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    animation: longDistanceSpinFlip 4s ease-out forwards;
}

.btn1:hover {
    background-color: var(--blue-hover) !important;
    color: var(--light-card-bg) !important;
    border: solid 3px var(--primary-blue) !important;
    border-radius: 6px;
    width: 49%;
    margin: 3px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

/* Secondary Button */
.btn2 {
    color: var(--primary-blue) !important;
    background-color: var(--light-card-bg) !important;
    /* Fixed typo */
    border: solid 3px var(--primary-blue) !important;
    border-radius: 6px;
    width: 49%;
    margin: 3px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    animation: longDistanceSpinFlip 4s ease-out forwards;
}

.btn2:hover {
    background-color: var(--primary-blue) !important;
    color: var(--light-card-bg) !important;
    border: solid 3px transparent !important;
    /* Maintains button size */
    border-radius: 6px;
    width: 49%;
    margin: 3px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

/* Ghost Button (Outline Style) */
.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: none;
}

/* Tags (Pill shapes below buttons) */
.tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
}

/* ==================================== */
/* === SECTION & CARD STYLES === */
/* ==================================== */

/* Custom Card Styling for the Top Row (Three Solutions) */
.solution-card {
    background-color: var(--light-card-bg);
    /* Pure white */
    border-radius: 12px;
    box-shadow:
        0 4px 15px rgba(49, 92, 160, 0.1),
        0 0 0 1px rgba(49, 92, 160, 0.05);
    /* Subtle blue outline */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(49, 92, 160, 0.25);
    /* Stronger blue shadow */
}

/* Icon Background (Blue Gradient Circle) */
.icon-bg {
    background: linear-gradient(135deg, rgba(49, 92, 160, 1), rgba(49, 92, 160, 0.8));
    box-shadow: 0 4px 10px rgba(49, 92, 160, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

/* Custom Blue Button (Replaces Gold) */
.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--light-card-bg);
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-blue:hover {
    background-color: var(--blue-hover);
    box-shadow: 0 4px 15px rgba(49, 92, 160, 0.6);
}

/* Summary Card (Bottom Row) */
.summary-card {
    background-color: var(--light-card-bg);
    border-radius: 8px;
    border: 1px solid rgba(49, 92, 160, 0.1);
    /* Subtle blue border */
    padding: 16px;
    transition: box-shadow 0.3s ease;
}

.summary-card:hover {
    box-shadow: 0 6px 18px rgba(49, 92, 160, 0.15);
}

/* ==================================== */
/* === GENERAL SECTION & CARD STYLES === */
/* ==================================== */

.columns {
    font-family: 'Roboto', sans-serif;
}

/* ✅ Corrected spelling of 'column' (was 'coulumn') */
.column-button {
    background-color: var(--primary-blue) !important;
    color: var(--light-card-bg) !important;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.column-button:hover {
    background-color: var(--blue-hover) !important;
}

section {
    margin-bottom: 2rem;
}

.section.dark {
    /* Gradient uses the theme’s deep blue tones */
    background: linear-gradient(180deg,
            rgba(49, 92, 160, 0.75),
            rgba(38, 74, 128, 0.85));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--off-white);
}

p.sub {
    color: var(--muted);
    margin: 0 0 30px;
}

/* --- CARD STYLES --- */
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    display: grid;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(49, 92, 160, 0.15);
}

.card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(180deg,
            var(--primary-blue) 0%,
            var(--blue-hover) 100%);
    display: grid;
    place-items: center;
    color: var(--light-card-bg);
    font-weight: 800;
}

.card h3 {
    margin: 0.2rem 0;
    font-size: 1.25rem;
    color: var(--dark-text);
}

.card p {
    color: var(--muted);
}

.card ul {
    margin: 0.3rem 0 0.2rem 1.1rem;
    padding: 0;
    color: var(--muted);
    list-style-type: disc;
}

.card li {
    margin: 0.25rem 0;
}

.card .cta {
    margin-top: auto;
    /* Pushes the button to the bottom */
}

/* Decorative top-right corner glow */
.corner {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(120px 120px at 50% 50%,
            rgba(49, 92, 160, 0.16),
            transparent 60%);
}

/* --- TILE STYLES --- */
.tile {
    background: var(--panel-2);
    border: 1px dashed var(--muted-text);
    /* Subtle dashed border */
    border-radius: 14px;
    padding: 18px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    background: var(--light-card-bg);
    box-shadow: 0 4px 12px rgba(49, 92, 160, 0.1);
}

.tile h4 {
    margin: 0.2rem 0 0.4rem;
    font-size: 1.05rem;
    color: var(--dark-text);
}

.tile p {
    color: var(--muted);
}

/* ==================================== */
/* === ANIMATION KEYFRAMES SECTION === */
/* ==================================== */

/* === 1. Slide-In from Left === */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === 2. Flip-In Effect === */
@keyframes flipIn {
    0% {
        transform: perspective(400px) rotateY(180deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

/* === 3. Long Distance Spin Flip === */
@keyframes longDistanceSpinFlip {
    0% {
        transform: perspective(1500px) translate(-150vw, -150vh) scale(0.05) rotateX(180deg) rotateZ(-540deg);
        opacity: 0;
    }

    100% {
        transform: perspective(1500px) translate(0, 0) scale(1) rotateX(0deg) rotateZ(0deg);
        opacity: 1;
    }
}

/* === 4. Realistic Fly and Bounce === */
@keyframes realisticFlyAndBounce {
    0% {
        transform: perspective(1000px) translate(-100vw, -100vh) scale(0.1) rotateZ(-360deg);
        opacity: 0;
    }

    60% {
        transform: perspective(1000px) translate(0, 0) scale(1.05) rotateZ(0deg);
        opacity: 1;
    }

    75% {
        transform: perspective(1000px) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) translateY(0);
    }
}

/* === 5. Fish Jump Arc Animation === */
@keyframes fishJump {
    0% {
        transform:
            translateX(-120vw) translateY(100vh) rotate(-20deg) scale(0.8);
        opacity: 0;
    }

    30% {
        transform:
            translateX(-20vw) translateY(-20vh) rotate(10deg) scale(1.1);
        opacity: 1;
    }

    60% {
        transform:
            translateX(20vw) translateY(0vh) rotate(-5deg) scale(1);
        opacity: 1;
    }

    100% {
        transform:
            translateX(120vw) translateY(50vh) rotate(-20deg) scale(0.8);
        opacity: 0;
    }
}

/* =============================== */
/* === FISH ANIMATION ELEMENT === */
/* =============================== */
.fish-element {
    /* Positioning */
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);

    /* Size */
    width: 300px;
    height: 150px;
    z-index: 100;

    /* Animation Settings */
    animation: slideAcrossReverseSlow 10s linear 4.5s forwards;

    /* Visibility */
    opacity: 0;
    will-change: transform, opacity;
    pointer-events: none;
    /* Prevent accidental interaction */
}

/* =============================== */
/* === KEYFRAMES (Merged & Fixed) === */
/* =============================== */
@keyframes slideAcrossReverseSlow {
    0% {
        /* Start just off the right edge by its own width */
        transform: translate(300px, -50%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        /* Move fully past the left side of the viewport */
        transform: translate(calc(-100vw - 300px), -50%);
        opacity: 0;
    }
}

/* =============================== */
/* === FISH IMAGE STYLE === */
/* =============================== */
.fish {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==================================== */
/* === CONSULTATION SECTION STYLES === */
/* ==================================== */

.consultation-section {
    background-color: var(--off-white);
    /* Clean off-white background */
    margin-top: 0;
    padding: 60px 0;
    /* Add vertical breathing space */
}

/* ======================== */
/* === CONSULTATION CARD === */
/* ======================== */
.consultation-card {
    background-color: var(--light-card-bg);
    border-radius: 12px;
    box-shadow:
        0 8px 30px rgba(49, 92, 160, 0.15),
        0 0 0 1px rgba(49, 92, 160, 0.05);
    overflow: hidden;
    /* Ensures child elements (like images) respect border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 35px rgba(49, 92, 160, 0.2),
        0 0 0 1px rgba(49, 92, 160, 0.08);
}

/* ======================== */
/* === TEXT ELEMENTS === */
/* ======================== */
.lead {
    color: var(--muted-text) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ======================== */
/* === PLACEHOLDER AREA === */
/* ======================== */
.placeholder-area {
    min-height: 250px;
    background-color: transparent;
    overflow: hidden;
    /* Prevent image overflow */
    border-radius: 12px;
}

/* Image inside the placeholder */
.qoute-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio, fill container */
    object-position: center;
    border-radius: inherit;
    display: block;
}

/* ======================== */
/* === BUTTON STYLES === */
/* ======================== */

/* Solid Button: Call */
.call-button {
    background-color: var(--primary-blue) !important;
    color: var(--light-card-bg) !important;
    border: 2px solid var(--primary-blue) !important;
    transition: all 0.2s ease;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
}

.call-button:hover {
    background-color: var(--blue-hover) !important;
    border-color: var(--blue-hover) !important;
}

/* Outline Button: Email */
.email-button {
    background-color: transparent !important;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    transition: all 0.2s ease;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
}

.email-button:hover {
    background-color: var(--blue-hover) !important;
    color: var(--light-card-bg) !important;
}

/* ======================== */
/* === RESPONSIVE TWEAKS === */
/* ======================== */
@media (max-width: 768px) {
    .consultation-card {
        border-radius: 10px;
    }

    .placeholder-area {
        min-height: 200px;
    }

    .lead {
        font-size: 0.95rem;
    }
}

/* ==================================== */
/* === CONTACT SECTION STYLES === */
/* ==================================== */

.contact-card {
    background-color: var(--light-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth hover lift effect for interactivity */
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 92, 160, 0.25);
}

/* ======================== */
/* === HEADING STYLES === */
/* ======================== */
.card-title-heading {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 750;
    border-bottom: 1px solid var(--muted-text);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ======================== */
/* === ADDRESS & INFO TEXT === */
/* ======================== */
.address-detail {
    color: var(--primary-blue) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ======================== */
/* === OPENING HOURS === */
/* ======================== */
.opening-hours {
    margin-top: 1.5rem;
}

.schedule-item {
    border-top: 1px solid var(--muted-text);
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove top border for first schedule entry */
.opening-hours .schedule-item:first-child {
    border-top: none;
    padding-top: 0;
}

/* ======================== */
/* === TIME & DAY STYLES === */
/* ======================== */
.day-range {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1.05rem;
}

.time-slot {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
}

/* ======================== */
/* === RESPONSIVE DESIGN === */
/* ======================== */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }

    .card-title-heading {
        font-size: 1.3rem;
    }

    .time-slot {
        font-size: 1.1rem;
    }

    .day-range {
        font-size: 1rem;
    }
}

/* ==================================== */
/* === FOOTER & COPYRIGHT STYLES === */
/* ==================================== */

footer {
    background-color: var(--dark-text);
    color: var(--light-card-bg);
    padding: 2.5rem 1rem 0;
    line-height: 1.6;
}

.main-footer {
    margin-bottom: -3.5rem;
}

/* --- Footer Column Headings --- */
.footer-h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Footer Text & Links --- */
.footer-content {
    font-size: 1rem;
    color: var(--off-white);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.footer-content a {
    color: var(--off-white);
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--primary-blue);
}

/* --- Footer Row Separator --- */
.footer-row {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- COPYRIGHT AREA --- */
.copyright-section {
    background-color: var(--dark-text);
    margin-top: 1.5rem;
}

.copyright {
    background-color: var(--dark-text);
    height: 4rem;
    color: var(--light-card-bg);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 0;
    }

    .footer-h1 {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-content {
        text-align: center;
        font-size: 0.95rem;
    }

    .footer-row {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .copyright {
        font-size: 0.9rem;
        height: auto;
        padding: 1rem 0;
    }
}

/* ==================================== */
/* === FIXED TICKER BANNER (FOOTER) === */
/* ==================================== */

.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--light-card-bg);
    z-index: 2000;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    /* Add this */
    align-items: center;
    /* Vertical centering */
    padding: 0.2rem 0.5rem;
    /* Adjust top/bottom padding as needed */
}

.ticker-banner {
    display: flex;
    align-items: center;
    /* Keep this for vertical centering inside */
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
    will-change: transform;
}

.ticker-text>div {
    display: inline-block;
    vertical-align: middle;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Individual Item Styles --- */
.ticker-alert-main {
    color: #ff3333;
    font-size: 1.2em;
    padding-right: 20px;
}

.ticker-product {
    color: #ffeb3b;
    margin-right: 20px;
}

.ticker-strikethrough {
    display: inline;
    color: #bdbdbd;
    text-decoration: line-through;
    font-weight: 900;
}

.ticker-fries {
    color: #90ee90;
    margin-right: 20px;
}

.ticker-cta {
    color: #ffffff;
    font-weight: 700;
}

.ticker-separator {
    font-size: 1.4em;
    margin: 0 15px;
    color: #ffffffa8;
}

.ticker-separator-wide {
    font-size: 1.4em;
    margin: 0 25px;
    color: #ffffffa8;
}

.ticker-icon {
    height: 26px;
    width: auto;
    vertical-align: middle;
    margin-right: 6px;
}

.product-icon {
    height: 26px;
}

.ticker-price-highlight {
    color: #ffffff;
    font-weight: 900;
    display: inline-block;
}