/* --- SmarTcoaT Terra-Futura Style Sheet --- */

@font-face {
    font-family: 'SmarTcoaTHeader';
    src: url('assets/SC_HDR_FONT.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato';
    src: url('assets/lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/lato/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
}

:root {
    --sc-blue: #1f7cc2;
    --sc-blue-light: #4cb1ff;
    --sc-green: #7BC144;
    --sc-green-light: #a9e87a;
    --silver: #BCC6CC;
    --white: #FFFFFF;
    --light-grey-text: #EAEAEA;
    --dark-text: #333333;
    --frame-bg: rgba(255, 255, 255, 0.04);
    --glow-color: rgba(31, 124, 194, 0.4);
}

body {
    margin: 0;
    padding-top: 20vh; /* This creates the space for the fixed header */
    padding-bottom: 100px; /* Space for sticky footer */
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background-image: url('images/SC_MAIN.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    letter-spacing: 1px;
}

.world-view {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Apply grid layout specifically on contact page */
body.contact-page .world-view {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* 1/4, 2/4, 1/4 */
    gap: 40px;
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: rgba(255, 255, 255, 0.25); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 200, 200, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
}

.header-nav { display: flex; gap: 15px; flex-basis: 30%; }
.header-nav.left { justify-content: flex-start; }
.header-nav.right { justify-content: flex-end; }

.logo-button {
    text-align: center;
    flex-grow: 1;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
    text-decoration: none; /* Added to remove underline from new text */
}

.logo-button img {
    height: 15vh;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-button img:hover { transform: scale(1.05); }

.logo-subtext {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1.1em; 
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(31, 124, 194, 0.8); 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -15px; 
    word-spacing: 4em; /* Reduced spacing */
}


.pill-button {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    line-height: 1.1;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    color: var(--white);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
    box-shadow: 0 3px 5px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.5);
}

.pill-button span {
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 1.5em;
    white-space: nowrap;
}

.pill-button small {
    font-family: 'Lato', sans-serif;
    font-size: 0.7em;
    font-weight: 300;
    opacity: 0.8;
    white-space: normal;
}

.btn-green { background-image: linear-gradient(to bottom, var(--sc-green-light), var(--sc-green)); }
.btn-blue { background-image: linear-gradient(to bottom, var(--sc-blue-light), var(--sc-blue)); }

.pill-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-color), inset 0 1px 1px rgba(255,255,255,0.6);
}

.pill-button:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Main Content --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.floating-frame {
    background-color: var(--frame-bg);
    border: 2px solid #fff;
    border-radius: 35px;
    padding: 25px;
    box-shadow: 
        inset 0 0 15px rgba(0,0,0,0.5),
        0 15px 35px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-frame h2 {
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 2.2em;
    color: var(--white);
    margin-top: 0;
    border-bottom: 1px solid var(--silver);
    padding-bottom: 10px;
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.frame-content {
    line-height: 1.6;
    color: var(--light-grey-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.0);
    padding-right: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--sc-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
    text-shadow: none;
}

.read-more:hover { color: var(--sc-blue); }

.warranty-frame { grid-column: 1 / -1; }

.carousel .step { text-align: center; }

/* --- Footer --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: rgba(224, 234, 252, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.footer-left, .footer-right, .footer-center {
    display: flex;
    align-items: center;
    color: var(--sc-blue);
    text-decoration: none;
}

.footer-left { justify-content: flex-start; font-size: 0.8em; }
.footer-left img { height: 40px; margin-right: 10px; }

.footer-center {
    justify-content: center;
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 1.5em;
    flex-grow: 1;
    text-shadow: 1px 1px 4px var(--white);
    transition: color 0.2s ease;
}

.footer-right {
    justify-content: center;
    padding: 8px 25px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #FFFFFF, #EAEAEA);
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 2.0em;
    color: var(--sc-green);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.footer-center:hover { color: var(--sc-green); }

/* --- Warranty Section Specifics --- */
.warranty-title-banner {
  font-family: 'SmarTcoaTHeader', sans-serif;
  font-size: 4.5rem; 
  font-weight: bold;
  text-align: center;
  margin: 1rem 0 2rem 0;
  color: #EAEAEA; 
  letter-spacing: 15px;
  text-shadow: 2px 2px 0 var(--sc-green), 5px 5px 0 var(--sc-blue), 6px 5px 0 var(--sc-blue), 5px 6px 0 var(--sc-blue), 6px 6px 0 var(--sc-blue);
}

/* --- Warranty Signboard --- */
.signboard-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.signboard-item {
    text-align: left;
    position: relative; /* Context for absolute positioning */
}

.signboard-item.short {
    flex: 0 1 22%; 
}

.signboard-item.tall {
    flex: 0 1 25%;
}

.signboard-image-container {
    position: relative; /* Context for absolute positioning */
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.signboard-image-container img {
    display: block;
    width: 100%;
    height: auto;
}

.signboard-text {
    padding: 15px 5px 0 5px;
}

.signboard-text p {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Positioning for Block 2: Worry-Free */
.split-level-title {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.split-level-title span {
    position: absolute;
    font-family: 'SmarTcoaTHeader', sans-serif;
    color: var(--white);
    text-shadow: 1px 1px 0px var(--sc-blue), 2px 2px 4px rgba(0,0,0,0.6);
    line-height: 1;
    white-space: nowrap;
}

.title-line-1 {
    font-size: 1.0em;
    top: 25px;
    left: 25px;
}

.title-line-2 {
    font-size: 1.0em;
    bottom: 20px;
    right: 15px;
}

/* Positioning for Block 3: Perpetual Protection */
.perpetual-title {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.perpetual-title span {
    position: absolute;
    font-family: 'SmarTcoaTHeader', sans-serif;
    color: var(--white);
    text-shadow: 1px 1px 0px var(--sc-blue), 2px 2px 4px rgba(0,0,0,0.6);
    line-height: 1;
    white-space: nowrap;
    font-size: 1.0em; /* Adjust font size as needed */
}

.perpetual-line-1 { /* "PERPETUAL" */
    top: 15px;
    right: 15px;
}

.perpetual-line-2 { /* "PROTECTION" */
    bottom: 20px;
    right: 25px;
}

/* General title for tall blocks (A-A, Priority) */
.signboard-title {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 2.5em;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    pointer-events: none;
}

.tall-signboard-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 20px 35px;
    box-sizing: border-box;
}

.tall-signboard-text-overlay p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.0);
}

#warranty-aerial { order: 1; }
#warranty-worry-free { order: 2; }
#warranty-perpetual { order: 3; }
#warranty-priority { order: 4; }

#warranty-worry-free .signboard-text p {
    color: var(--white);
    font-size: 1.1875em;
}

#warranty-perpetual .signboard-text p {
    color: var(--white);
    font-size: 1.1875em;
}

.warranty-details-link {
    display: block;
    text-align: center;
    margin-top: 25px;
    font-family: 'SmarTcoaTHeader', sans-serif;
    color: var(--sc-green);
    font-size: 2.0em;
    text-shadow: 0 0 5px rgba(255,255,255,0.7), 2px 2px 8px rgba(0, 0, 0, 1.0);
    text-decoration: none;
    transition: color 0.2s ease;
}

.warranty-details-link:hover {
    color: var(--sc-blue);
}

/* --- Under Construction --- */
.construction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.construction-header {
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 3.0em;
    color: var(--sc-green);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.0);
    margin-bottom: 25px;
}
.construction-video {
    width: 50%;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.construction-footer {
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 2.0em;
    color: var(--light-grey-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.0);
    margin-top: 25px;
}


/* --- Contact Page Specifics --- */

/* Apply width/margin only to contact page's frame */
body.contact-page .center-column .floating-frame {
    max-width: 100%; /* Frame fills center column */
    margin: 0; /* Remove auto margins */
}

.contact-intro-text {
    text-align: center;
    font-size: 1.1em;
    margin: 0 auto 25px auto; /* Centering */
    max-width: 80%; /* Limit width relative to parent */
    color: var(--light-grey-text);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background-color: var(--sc-blue); /* Static blue background */
    padding: 15px 25px; /* Added padding */
    border-radius: 15px; /* Added rounded corners */
}

/* Apply shadow only to contact h2 */
body.contact-page .floating-frame h2 {
    text-shadow: 1px 1px 0px var(--sc-blue), 2px 2px 0px var(--sc-blue), 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.form-mode-selector {
    text-align: center;
    margin-bottom: 30px; /* Increased margin */
}

.form-mode-selector label {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px; /* Reduced padding slightly */
    background-color: rgba(0,0,0,0.2);
    color: var(--light-grey-text);
    border-radius: 25px; /* More rounded */
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'SmarTcoaTHeader', sans-serif; /* Use header font */
    font-size: 1.4em; /* Larger font */
    letter-spacing: 3px; /* Wider kerning */
    min-width: 120px; /* Adjusted minimum width */
    text-align: center; /* Ensure text is centered */
}

.form-mode-selector input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

/* Specific checked styles */
.form-mode-selector input[id="modeTell"]:checked + label {
    background-color: var(--sc-green);
    color: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.form-mode-selector input[id="modeAsk"]:checked + label {
    background-color: var(--sc-blue);
    color: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.contact-form {
    max-width: 800px; 
    margin: 0 auto 40px auto; 
}

.form-top-row {
    display: flex;
    gap: 15px; 
    margin-bottom: 15px;
}

.form-top-row .form-group {
    flex: 1; 
    margin-bottom: 0; 
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--light-grey-text);
    font-weight: bold;
    /* Blue layered shadow */
    text-shadow: 1px 1px 0px var(--sc-blue), 2px 2px 0px var(--sc-blue), 1px 1px 2px rgba(0,0,0,0.7);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--silver);
    background-color: rgba(255,255,255,0.9);
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
}

.form-group textarea {
    min-height: 120px; 
    resize: vertical;
}

.form-submit-button {
    display: block;
    width: auto; /* Allow button to shrink */
    min-width: auto; /* Remove minimum width */
    margin: 20px auto 0 auto; /* Center the button */
    padding: 8px 25px; /* Adjusted padding */
    font-family: 'Lato', sans-serif; /* Changed to Lato */
    font-weight: bold; /* Added bold */
    font-size: 1.4em; /* Adjusted size */
    color: var(--white);
    background-image: linear-gradient(to bottom, var(--sc-green-light), var(--sc-green));
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
    box-shadow: 0 3px 5px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.5);
    letter-spacing: 5px; /* Wide kerning */
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-color), inset 0 1px 1px rgba(255,255,255,0.6);
}

.form-submit-button:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.content-columns {
    /* Removed display: flex; for contact page */
    /* gap: 40px; */
    margin-top: 30px;
}

.content-column {
    /* Removed flex: 1; */
}

.content-column h3 {
    font-family: 'SmarTcoaTHeader', sans-serif;
    font-size: 1.8em;
    color: var(--white);
    border-bottom: 1px solid var(--silver);
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.placeholder-text {
    color: var(--silver);
    font-style: italic;
}

.scheduling-placeholder {
    /* Adjusted to center within the center column */
    max-width: 800px; /* Match form width (adjust if needed) */
    margin: 0 auto; /* Center within the center column */
    width: 100%; /* Ensure it takes available width within center column */
    box-sizing: border-box;
    background-color: rgba(100, 100, 100, 0.3); 
    border: 2px dashed var(--silver);
    border-radius: 15px;
    padding: 40px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-grey-text);
    font-size: 1.2em;
    font-style: italic;
}

/* Hide/Show logic for form fields (JS will toggle this class) */
.hidden-field { display: none; }


/* --- Columns for Contact Page --- */
.left-column, .right-column {
    /* Basic placeholder styles */
    padding: 20px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 15px;
    height: fit-content; /* Adjust height as needed */
}

.center-column {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between form and placeholder */
}

/* Ensure frame in center column doesn't exceed its bounds */
.center-column .floating-frame {
    width: 100%;
    box-sizing: border-box;
}

/* Styles specific to thank you / error page frame */
body.thank-you-page .floating-frame, 
body.error-page .floating-frame { 
    max-width: 50%; /* Make frame narrower */
    margin: 40px auto; /* Center with vertical margin */
}

/* 
============================================
== MOBILE / DESKTOP TOGGLE IMPLEMENTATION ==
============================================
*/

/* --- Default State (Desktop) --- */
.desktop-container {
    display: block;
}
.mobile-container {
    display: none;
}


/* --- Mobile State (Touch-Only Devices) --- */
@media (pointer: coarse) and (hover: none) {

    /* --- Toggle Visibility --- */
    .desktop-container {
        display: none;
    }
    .mobile-container {
        display: block;
    }

    /* --- Mobile Body & Layout --- */
    body {
        padding-top: 0; /* Remove desktop header padding */
        padding-bottom: 0; /* Remove desktop footer padding */
    }

    .mobile-world-view {
        padding: 20px;
    }

    /* --- Mobile Header --- */
    .mobile-header {
        text-align: center;
        padding: 20px; /* Match mobile-world-view padding */
        background: rgba(255, 255, 255, 0.25); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(200, 200, 200, 0.5);
        box-sizing: border-box; /* FIX: Prevents padding from causing overflow */
    }
    .mobile-header a {
        display: block; /* Make the link a block for width */
    }
    .mobile-header img {
        width: 100%; /* FIX: Force logo to 100% of its container */
        height: auto; /* Preserve aspect ratio */
        filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
    }

    /* --- Mobile Frame --- */
    .mobile-frame {
        background-color: var(--frame-bg);
        border: 2px solid #fff;
        border-radius: 25px;
        padding: 20px;
        box-shadow: 
            inset 0 0 10px rgba(0,0,0,0.5),
            0 10px 25px rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 25px;
    }

    .mobile-frame h2 {
        font-family: 'SmarTcoaTHeader', sans-serif;
        font-size: 1.8em;
        color: var(--white);
        margin-top: 0;
        border-bottom: 1px solid var(--silver);
        padding-bottom: 10px;
        text-align: center;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
        letter-spacing: 2px;
    }
    .mobile-frame p {
        line-height: 1.6;
        color: var(--light-grey-text);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.0);
    }

    /* --- Mobile Buttons --- */
    .mobile-button-row {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        margin-top: 25px;
    }
    
    .mobile-button { /* Base class for new buttons */
        display: block;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 50px;
        transition: all 0.2s ease-in-out;
        border: 1px solid rgba(0,0,0,0.2);
        cursor: pointer;
        color: var(--white);
        text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
        box-shadow: 0 3px 5px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.5);
        font-family: 'SmarTcoaTHeader', sans-serif;
        font-size: 1.2em;
        text-align: center;
        width: auto; /* FIX: Allow button to be tight to text */
        /* flex: 1; */ /* FIX: Removed this rule which caused override */
        line-height: 1.2;
    }
    
    .mobile-button small {
        font-family: 'Lato', sans-serif;
        font-size: 0.7em;
        display: block;
        line-height: 1.1;
        text-transform: uppercase;
    }
    
    .wide-kerning {
        letter-spacing: 4px;
        font-size: 1.1em;
    }

    .mobile-button-call-blue {
        background-image: linear-gradient(to bottom, var(--sc-blue-light), var(--sc-blue));
    }
    
    .mobile-button-text-green {
        background-image: linear-gradient(to bottom, var(--sc-green-light), var(--sc-green));
    }

    .mobile-button-submit {
        display: block;
        width: auto; /* FIX: Allow button to be tight to text */
        margin: 20px auto 0 auto;
        padding: 10px 25px;
        font-family: 'Lato', sans-serif;
        font-weight: bold;
        font-size: 1.2em;
        color: var(--white);
        background-image: linear-gradient(to bottom, var(--sc-green-light), var(--sc-green));
        border: 1px solid rgba(0,0,0,0.2);
        border-radius: 8px;
        cursor: pointer;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
        box-shadow: 0 3px 5px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.5);
        letter-spacing: 5px; /* Added wide kerning */
    }

    /* --- Mobile Form --- */
    .mobile-form-group {
        margin-bottom: 15px;
    }
    .mobile-form-group label {
        display: block;
        margin-bottom: 5px;
        color: var(--light-grey-text);
        font-weight: bold;
        text-shadow: 1px 1px 0px var(--sc-blue), 1px 1px 2px rgba(0,0,0,0.7);
    }
    .mobile-form-group input[type="text"] {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid var(--silver);
        background-color: rgba(255,255,255,0.9);
        box-sizing: border-box;
        font-family: 'Lato', sans-serif;
        color: var(--dark-text);
    }

    /* --- Mobile Footer --- */
    .mobile-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: 30px;
    }
    .mobile-footer-seraph {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--sc-blue);
        font-size: 0.8em;
    }
    .mobile-footer-seraph img {
        height: 30px;
        margin-right: 10px;
    }

}