/*
Theme Name: FixUSNow Theme
Theme URI: https://fixusnow.com
Author: FixUSNow
Author URI: https://fixusnow.com
Description: A simple starter theme for FixUSNow.com service marketplace.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fixusnow
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #222;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: #0b1f33;
    color: #fff;
    padding: 1rem 2rem;
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.site-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
}

.hero {
    background: linear-gradient(135deg, #0b1f33, #0069ff);
    color: #fff;
    padding: 4rem 1.5rem 5rem;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #ffb400;
    color: #0b1f33;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-tagline {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
}

/* sections */

.section {
    padding: 3rem 1.5rem;
}

.section-alt {
    background: #ffffff;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    margin-bottom: 2rem;
    color: #555;
}

/* grids */

.feature-grid,
.service-grid,
.steps-grid,
.testimonial-grid {
    display: grid;
    gap: 1.8rem;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.5rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
    border: 1px solid #e5e7eb;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card p {
    margin: 0;
    color: #555;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #e0f2fe;
    color: #0369a1;
    margin-bottom: 0.75rem;
}

/* testimonials */

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
    font-style: italic;
    position: relative;
}

.testimonial::before {
    content: "“";
    font-size: 2rem;
    position: absolute;
    left: -5px;
    top: -10px;
    color: #e5e7eb;
}

.testimonial-name {
    margin-top: 1rem;
    font-weight: 600;
}

/* CTA banner */

.cta-banner {
    background: #0b1f33;
    color: #fff;
    border-radius: 1.1rem;
    padding: 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-banner p {
    margin: 0.3rem 0 0;
}

/* contact */

.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.contact-details p {
    margin: 0.25rem 0;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #d4d4d8;
    margin-bottom: 0.9rem;
    font: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* footer */

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer a {
    color: #e5e7eb;
    font-size: 0.9rem;
}

/* responsive */

@media (max-width: 780px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
