/*
Theme Name: SellQuick
Theme URI: http://sellquick.co.za/sellquick
Description: A simple and elegant WordPress theme designed for quick and easy setup.
Version: 1.0
Author: Your Name
Author URI: http://sellquick.co.za
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, custom-menu, post-thumbnails
*/

/* Basic styles for the SellQuick theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Global Styles */
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

.landing-page {
    font-family: "Poppins", sans-serif;
    background: #f5f7fa;
    color: #222;
    min-height: 100vh;
}
.hero {
    background: linear-gradient(90deg, #0073aa 0%, #00c6fb 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px 20px;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}
.cta-btn {
    background: #fff;
    color: #0073aa;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #00c6fb;
    color: #fff;
}
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}
.feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 30px 25px;
    text-align: center;
    width: 260px;
}
.feature i {
    font-size: 2.5em;
    color: #0073aa;
    margin-bottom: 15px;
}
.offer-form-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    max-width: 500px;
    margin: 40px auto;
    padding: 40px 30px;
    text-align: center;
}
.offer-form input,
.offer-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}
.offer-form button {
    background: #0073aa;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.offer-form button:hover {
    background: #005177;
}
.testimonials {
    margin: 60px auto 40px auto;
    max-width: 700px;
    text-align: center;
}
.testimonials h2 {
    margin-bottom: 30px;
}
.testimonial {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.testimonial span {
    display: block;
    margin-top: 10px;
    color: #0073aa;
    font-weight: bold;
}
.landing-footer {
    text-align: center;
    padding: 30px 10px;
    background: #222;
    color: #fff;
    border-radius: 0 0 12px 12px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 90%;
        margin-bottom: 20px;
    }
}