/*
---
Theme: Juicy UI
Colors:
  - Peach: #FF9E80
  - Aqua: #00E5FF
  - Lemon: #FFEB3B
  - Dark BG: #1a1a2e
  - Light BG: #fdfcff
  - Text Dark: #162447
---
*/

:root {
    --peach: #FF9E80;
    --aqua: #00E5FF;
    --lemon: #FFEB3B;
    --dark-bg: #1a1a2e;
    --light-bg: #fdfcff;
    --text-dark: #162447;
    --text-light: #e4e4e4;
    --card-bg: #ffffff;
    --primary-color: #f7775e;
    /* Adjusted Peach for better visibility */
    --secondary-color: var(--aqua);
    --accent-color: var(--lemon);
    --border-color: #e8e8f0;

    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;

    --shadow-soft: 0 8px 32px rgba(26, 26, 46, 0.08);
    --shadow-medium: 0 12px 40px rgba(26, 26, 46, 0.12);
    --shadow-strong: 0 16px 50px rgba(26, 26, 46, 0.18);

    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- BASE & RESET --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body.subpage {
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(247, 119, 94, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* --- BACKGROUND BLOBS --- */
.blob {
    position: fixed;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.blob1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    background: var(--primary-color);
    animation: moveBlob1 20s infinite alternate;
}

.blob2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    background: var(--aqua);
    animation: moveBlob2 25s infinite alternate;
}

.blob3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lemon);
    animation: moveBlob3 30s infinite alternate;
}

@keyframes moveBlob1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 50px) scale(1.2);
    }
}

@keyframes moveBlob2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-80px, -40px) scale(0.9);
    }
}

@keyframes moveBlob3 {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(180deg) scale(1.3);
    }
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: height var(--transition-smooth);
}

.header.scrolled .logo {
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(247, 119, 94, 0.4);
}

.btn-secondary {
    background-color: var(--card-bg);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background-color: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* --- MOBILE NAVIGATION --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-bg);
    color: var(--text-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 25px 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Open states for mobile nav */
body.nav-open .mobile-nav {
    right: 0;
}

body.nav-open .mobile-toggle .bar-top {
    transform: rotate(45deg) translate(7px, 7px);
}

body.nav-open .mobile-toggle .bar-middle {
    opacity: 0;
}

body.nav-open .mobile-toggle .bar-bottom {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.nav-open .mobile-toggle .bar {
    background: var(--text-dark);
}


/* --- HERO SECTION --- */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1;
    perspective: 1000px;
}

.hero-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
}

.hero-image {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-card i {
    color: var(--primary-color);
}

.hero-card.card-1 {
    top: 20%;
    left: -15%;
    transform: translateZ(50px);
}

.hero-card.card-2 {
    bottom: 10%;
    right: -20%;
    transform: translateZ(80px);
}

.hero-card.card-3 {
    top: -5%;
    right: 10%;
    transform: translateZ(30px);
}


/* --- SERVICES SECTION --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-image: linear-gradient(135deg, var(--primary-color), var(--lemon));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 10px;
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-link i {
    transition: transform var(--transition-fast);
    margin-left: 5px;
}

.card-link:hover i {
    transform: translateX(5px);
}


/* --- ABOUT SECTION --- */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.about-content-wrapper {
    flex: 1.2;
}

.about-features {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}


/* --- INDUSTRIES SECTION --- */
.industries-section {
    background-color: #f7f7f7;
    overflow: hidden;
}

.industries-slider {
    display: flex;
    gap: 40px;
    width: calc(2 * (7 * (150px + 40px)));
    /* 2 * (items * (width + gap)) */
    animation: scroll 40s linear infinite;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 150px;
    height: 120px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    flex-shrink: 0;
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.testimonials-section .subtitle {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-smooth);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(0.95);
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: var(--lemon);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}


/* --- ROI CALCULATOR SECTION --- */
.roi-calculator-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.roi-content {
    flex: 1;
}

.roi-form-wrapper {
    flex: 1.2;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.roi-form .form-group {
    margin-bottom: 25px;
}

.roi-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.roi-form .form-group span {
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.roi-results {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.roi-results p {
    font-weight: 500;
    margin-bottom: 5px;
}

.roi-results h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.roi-results .positive-roi {
    color: #2ecc71;
}

.roi-results .negative-roi {
    color: #e74c3c;
}


/* --- FOOTER --- */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -50px;
}

.footer-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--aqua);
    bottom: -80px;
    right: -80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-col-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}


/* --- SUBPAGES (LEGAL, CONTACT) --- */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: #f7f7f7;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: #777;
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
}

.page-header-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    margin: 1rem 0;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* --- CONTACT PAGE --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-info-panel p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.method-details a:hover {
    text-decoration: underline;
}


/* --- START: NEW CONTACT FORM STYLES --- */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    /* row-gap column-gap */
    align-items: start;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: #fcfcfd;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a9a9a9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(247, 119, 94, 0.3);
}

/* Specific Grid Placements for the form */
.service-group {
    grid-column: 1 / 2;
}

.message-group {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
    /* Position below service dropdown */
}

.submit-group {
    grid-column: 2 / 3;
    grid-row: 3 / 6;
    /* Span from service row to message row */
}

.submit-group .btn {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    /* Creates the "squircle" shape */
    font-size: 1.1rem;
    flex-direction: column;
    gap: 8px;
}

.submit-group .btn i {
    font-size: 1rem;
}

/* --- END: NEW CONTACT FORM STYLES --- */


/* --- POPUP --- */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    z-index: 1002;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.popup .fa-check-circle {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.popup-close-btn {
    margin-top: 20px;
}

/* --- LIVE CHAT WIDGET --- */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    z-index: 999;
    transition: transform var(--transition-smooth);
}

.chat-widget:hover {
    transform: scale(1.1);
}


/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered effect */
.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.services-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}


/* --- RESPONSIVE DESIGN --- */

/* Tablets */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        margin-top: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-section .container {
        flex-direction: column;
    }

    .roi-calculator-section .container {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        /* Stack all form items */
        gap: 20px;
    }

    /* Reset grid spanning for all special groups on mobile */
    .form-group.service-group,
    .form-group.message-group,
    .form-group.submit-group {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .submit-group .btn {
        min-height: 60px;
        flex-direction: row;
        /* Change button back to row */
        padding: 15px 24px;
    }


    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}