html {
    font-size: 16px;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Mukta Mahee', sans-serif;
    color: #222;
    line-height: 1.5;
    font-size: 1.125rem;
}

button,
input,
optgroup,
select,
textarea {
    font-family: 'Mukta Mahee', sans-serif;
}

.brand-logo {
    width: 180px;
}

.hero {
    height: 100vh;
    min-height: 700px;
}

.hero h1 span {
    font-size: 3rem;
    font-weight: 700;
}

.hero h1 small {
    font-weight: 300;
    display: block;
    font-size: 2.5rem;
}

a {
    color: #00c853;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: #009624 !important;
    outline: 0;
    text-decoration: none !important;
}

a.btn:hover,
a.btn:focus {
    color: #fff !important;
}

section {
    padding: 0;
}

.card-outline-primary {
    border-color: #00c853;
}

.hero .row {
    align-items: center;
}

.height-100 {
    height: 100vh;
}

.col-fixed {
    padding-bottom: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.vMiddle,
#main-offer-form {
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
}

@media (min-width:992px) {
    .col-fixed {
        position: fixed;
        top: 0;
        bottom: 0;
    }
}

@media (max-width:767px) {
    .hero {
        height: auto;
        min-height: 0;
    }

    .height-100 {
        height: auto;
    }

    .col-fixed {
        padding: 2rem 1.25rem;
    }

    .hero h1 span {
        font-size: 2.25rem;
    }

    .hero h1 small {
        font-size: 1.75rem;
    }

    .brand-logo-hero {
        max-width: 260px;
    }

    .vMiddle .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
}

.form-control {
    height: 3rem;
}

textarea.form-control {
    height: 6rem;
}

.form-control:hover,
.form-control:focus {
    border-color: #00c853;
}

/*===============================================
* Background Colors
================================================*/
.bg-alt {
    background-color: #fff;
}

.bg-faded {
    background-color: #F2F2F2;
}

.bg-blue {
    background-color: #032EFF !important;
}

.bg-primary {
    background-color: #00c853 !important;
}

.bg-purple {
    background-color: #3d5afe;
}

.bg-orange {
    background-color: #ffea00;
}

.bg-yellow {
    background-color: #feac00;
}

.bg-pink {
    background-color: #ff0080;
}

.bg-green {
    background-color: #00c853;
}

.bg-red {
    background-color: #FF3B30;
}

.bg-violet {
    background-color: #7B1FA2;
}

.bg-teal {
    background-color: #00796B;
}

.bg-slate {
    background-color: #455A64;
}

.bg-indigo {
    background-color: #303F9F;
}

/*===============================================
* Text Colors
================================================*/
.text-faded {
    color: #D9EDF7;
}

.text-dark {
    color: #37474F;
}

.text-muted {
    color: #999 !important;
}

.text-light {
    color: #fff;
}

.text-light:hover,
.text-light:focus {
    color: #eee;
    text-decoration: none;
}

.text-primary {
    color: #00c853 !important;
}

.text-purple {
    color: #3d5afe !important;
}

.text-orange {
    color: #ffea00 !important;
}

.text-yellow {
    color: #feac00 !important;
}

.text-pink {
    color: #ff0080 !important;
}

.text-green {
    color: #00c853 !important;
}

.text-red {
    color: #FF3B30 !important;
}

.text-violet {
    color: #7B1FA2 !important;
}

.text-teal {
    color: #00796B !important;
}

.text-slate {
    color: #455A64 !important;
}

.text-indigo {
    color: #303F9F !important;
}

/*===============================================
* Icon Sizes
================================================*/
/* ===============================================
* Contact Methods - PC & Mobile Optimization
================================================*/

/* PC / TABLET STYLES (Default) */
.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    /* More space between items on PC */
    margin-top: 3rem;
    padding: 0 1rem;
    width: 100%;
}

.contact-pill {
    display: flex;
    flex-direction: column;
    /* Icon on top, Text below */
    align-items: center;
    color: #00c853 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease-in-out;
}

.contact-pill em {
    font-size: 2.2rem;
    /* Nice large icons for PC */
    margin-bottom: 0.5rem;
}

.contact-pill span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    /* Darker text for a professional look */
}

.contact-pill:hover {
    transform: translateY(-5px);
    /* Elegant lift effect on hover */
    color: #009624 !important;
}

/* SMARTPHONE STYLES */
@media (max-width: 767px) {
    .contact-methods {
        flex-direction: row !important;
        /* Force icons on one line */
        flex-wrap: nowrap !important;
        gap: 1.5rem;
        /* Tighten gap for small screens */
        margin-top: 2rem;
    }

    .contact-pill {
        background: rgba(0, 200, 83, 0.08);
        /* Soft circular background */
        width: 55px;
        height: 55px;
        border-radius: 50%;
        justify-content: center;
    }

    .contact-pill em {
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    /* THE FIX: Strictly hide the text on mobile only */
    .contact-pill span {
        display: none !important;
    }
}

/*===============================================
* Colored Buttons
================================================*/
.btn {
    font-weight: 700;
    cursor: pointer;
}

.btn-outline-white {
    color: #fff !important;
    background-image: none;
    background-color: transparent;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.btn-white {
    color: #00c853;
    background-color: #fff;
    border-color: #fff;
}

.btn-white:hover {
    background: transparent !important;
    color: #fff !important;
}

.btn-radius {
    border-radius: 50px;
}

.btn-sedo {
    color: #fff !important;
    border: 1px solid #0ea54b;
    background: linear-gradient(135deg, #14c95f 0%, #0ea54b 100%);
    box-shadow: 0 10px 20px rgba(14, 165, 75, 0.25);
}

.btn-sedo:hover,
.btn-sedo:focus {
    color: #fff !important;
    background: linear-gradient(135deg, #11b654 0%, #0c9443 100%);
    border-color: #0c9443;
}

.btn-afternic {
    color: #fff !important;
    border: 1px solid #1e4d8f;
    background: linear-gradient(135deg, #2c67b8 0%, #1e4d8f 100%);
    box-shadow: 0 10px 20px rgba(30, 77, 143, 0.25);
}

.btn-afternic:hover,
.btn-afternic:focus {
    color: #fff !important;
    background: linear-gradient(135deg, #265ba6 0%, #19417a 100%);
    border-color: #19417a;
}

.border-none {
    border: none !important;
    border-color: transparent !important;
}

/*===============================================
* Logo Hero
================================================*/
.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-hero {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    background: #fff;
    padding: 12px 18px;
}



/* Add breathing room to the bottom of the form section */
.form-side {
    /* Existing styles... */
    padding-bottom: 80px !important;
    /* Adds space at the very bottom of the page */
}

#main-offer-form {
    /* Existing styles... */
    margin-bottom: 2rem;
    /* Adds space specifically below the button */
}

/* Specific fix for mobile to ensure the button doesn't hit the nav bar/edge */
@media (max-width: 767px) {
    .col-fixed {
        padding-bottom: 40px;
    }

    .form-side {
        padding-top: 2rem;
        padding-bottom: 100px !important;
        /* Extra space for mobile browser toolbars */
    }

    /* This targets the button specifically to give it margin from the screen edge */
    #main-offer-form button[type="submit"] {
        margin-bottom: 20px;
    }
}