/*
====================================================
YoYo Real Estate
MASTER WEBSITE STYLES
Brand: Copper | White | Charcoal

FINAL FOUNDATION
Designed for:
- Homepage
- Services & Pricing
- Selling
- About
- Contact
- Landlords
- Tenants
- Resources
====================================================
*/


/* ==================================================
   1. GLOBAL RESET
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background-color);
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    display: block;
    max-width: 100%;
    height: auto;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


ul,
ol {
    list-style: none;
}


p {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}


p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   2. TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    line-height: 1.25;
    font-weight: var(--weight-semibold);
}


h1 {
    font-size: var(--heading-xl);
}


h2 {
    font-size: var(--heading-lg);
    margin-bottom: var(--space-5);
}


h3 {
    font-size: var(--heading-sm);
}


h4 {
    font-size: var(--text-lg);
}


strong {
    font-weight: var(--weight-semibold);
}


/* ==================================================
   3. ACCESSIBILITY
================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--copper-light);
    outline-offset: 3px;
}


/* ==================================================
   4. CONTAINER
================================================== */

.container {
    width: min(90%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
}


/* ==================================================
   5. GENERAL SECTIONS
================================================== */

section,
.section {
    padding: var(--section-padding);
}


.section-title,
.section-heading {
    max-width: var(--content-width);
    margin: 0 auto var(--space-7);
    text-align: center;
}


.section-title h2,
.section-heading h2 {
    margin-bottom: var(--space-4);
}


.section-title h2::after,
.section-heading h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: var(--space-4) auto 0;
    background: var(--copper);
}


.section-title p,
.section-heading p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


/* ==================================================
   6. UTILITY COLORS
================================================== */

.text-center {
    text-align: center;
}


.text-copper {
    color: var(--copper);
}


.text-white {
    color: var(--white);
}


.bg-light {
    background: var(--off-white);
}


.bg-dark {
    background: var(--charcoal);
}


/* ==================================================
   7. HEADER
================================================== */

.site-header,
header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);

    width: 100%;
    height: var(--header-height);

    background: var(--white);
    box-shadow: var(--header-shadow);
}


.site-header .container,
header .container {
    height: 100%;
}


/* ==================================================
   8. NAVIGATION LAYOUT
================================================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 100%;
    gap: var(--space-5);
}


/* ==================================================
   9. LOGO
================================================== */

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}


.logo img {
    width: auto;
    max-width: 180px;
    max-height: 68px;
    object-fit: contain;
}


/* ==================================================
   10. MAIN NAVIGATION
================================================== */

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}


.main-nav ul,
nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}


.main-nav a,
nav a {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: var(--charcoal);

    font-size: 0.95rem;
    font-weight: var(--weight-medium);

    white-space: nowrap;
}


.main-nav a::after,
nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--copper);

    transition: width var(--transition-normal);
}


.main-nav a:hover,
.main-nav a.active,
nav a:hover,
nav a.active {
    color: var(--copper);
}


.main-nav a:hover::after,
.main-nav a.active::after,
nav a:hover::after,
nav a.active::after {
    width: 100%;
}


/* ==================================================
   11. HEADER BUTTONS
================================================== */

.header-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-3);

    margin-left: var(--space-4);
}


.header-buttons a {
    text-decoration: none;
}


/*
   Header Call Now
*/

.header-buttons .btn-outline {
    color: var(--charcoal);
    background: var(--white);
    border: 2px solid var(--charcoal);
}


.header-buttons .btn-outline:hover {
    color: var(--white);
    background: var(--charcoal);
    border-color: var(--charcoal);
}


/*
   Header Text Us
*/

.header-buttons .btn-primary {
    color: var(--white);
    background: var(--copper);
    border: 2px solid var(--copper);
}


.header-buttons .btn-primary:hover {
    color: var(--white);
    background: var(--copper-dark);
    border-color: var(--copper-dark);
}


/* ==================================================
   12. MOBILE MENU BUTTON
================================================== */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;
    padding: 8px;

    border: 0;
    background: transparent;

    flex-direction: column;
    justify-content: center;
    gap: 5px;
}


.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--charcoal);

    transition: var(--transition-fast);
}


.mobile-menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ==================================================
   13. STANDARD BUTTON SYSTEM
================================================== */

.btn-primary,
.btn-secondary,
.btn-outline,
.button-small {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: var(--button-padding);

    border-radius: var(--button-radius);

    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: var(--weight-semibold);

    line-height: 1.2;

    text-align: center;

    cursor: pointer;

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}


/*
   Primary Copper Button
*/

.btn-primary,
.button-small {
    color: var(--white);
    background: var(--copper);
    border: 2px solid var(--copper);
}


.btn-primary:hover,
.button-small:hover {
    color: var(--white);
    background: var(--copper-dark);
    border-color: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}


/*
   Outline Dark Button
*/

.btn-outline {
    color: var(--charcoal);
    background: var(--white);
    border: 2px solid var(--charcoal);
}


.btn-outline:hover {
    color: var(--white);
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
}


/*
   Secondary / Hero Button
*/

.btn-secondary {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
}


.btn-secondary:hover {
    color: var(--charcoal);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}


/* ==================================================
   14. HERO
================================================== */

.hero {
    position: relative;

    min-height: var(--hero-height);

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--charcoal);
}


.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.38)
        );

    z-index: 1;
}


.hero .container {
    position: relative;
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
}


.hero-eyebrow,
.hero-badge {
    display: inline-block;

    margin-bottom: var(--space-4);

    color: var(--copper-light);

    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.hero h1 {
    margin-bottom: var(--space-5);

    color: var(--white);

    font-size: clamp(
        2.5rem,
        5vw,
        var(--heading-xl)
    );
}


.hero p {
    max-width: 680px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: var(--text-xl);
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: var(--space-4);

    margin-top: var(--space-6);
}


.hero-buttons .btn-primary {
    color: var(--white);
}


.hero-buttons .btn-secondary {
    color: var(--white);
}


/* ==================================================
   15. HERO PHONE / TEXT LINKS
================================================== */

.hero-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: var(--space-5);

    margin-top: var(--space-5);
}


.hero-contact-link {
    display: inline-flex;
    align-items: center;

    color: var(--white);

    font-weight: var(--weight-semibold);

    border-bottom: 1px solid rgba(255, 255, 255, 0.55);

    padding-bottom: 3px;
}


.hero-contact-link:hover {
    color: var(--copper-light);

    border-color: var(--copper-light);
}


/* ==================================================
   16. HERO HIGHLIGHTS
================================================== */

.hero-highlights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-4);

    margin-top: var(--space-7);
}


.hero-highlights > div {
    padding: var(--space-4);

    background: rgba(255, 255, 255, 0.08);

    border-left: 3px solid var(--copper);

    backdrop-filter: blur(3px);
}


.hero-highlights strong {
    display: block;

    color: var(--white);

    font-size: 0.95rem;
}


/* ==================================================
   17. HOMEPAGE BENEFITS
================================================== */

.home-benefits {
    background: var(--off-white);

    padding:
        var(--space-7) 0;
}


.home-benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);
}


.home-benefit {
    min-height: 100%;

    padding: var(--space-6);

    text-align: center;

    background: var(--white);

    border-radius: var(--radius-lg);

    border: 1px solid var(--light-gray);

    border-top: 3px solid var(--copper);

    box-shadow: var(--shadow-sm);
}


.benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto var(--space-4);

    color: var(--copper);
    background: var(--cream);

    border-radius: var(--radius-round);

    font-size: 20px;
    font-weight: var(--weight-bold);
}


.home-benefit h3 {
    margin-bottom: var(--space-3);

    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: var(--weight-semibold);
}


.home-benefit p {
    margin-bottom: 0;
}


/* ==================================================
   18. SECTION LABEL
================================================== */

.section-label {
    display: block;

    margin-bottom: var(--space-3);

    color: var(--copper);

    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ==================================================
   19. HOMEPAGE SERVICES
================================================== */

.home-services {
    background: var(--white);
}


.home-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);
}


.home-service {
    height: 100%;

    padding: var(--space-6);

    background: var(--white);

    border: 1px solid var(--light-gray);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}


.home-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


.service-number {
    margin-bottom: var(--space-4);

    color: var(--copper);

    font-size: var(--text-sm);
    font-weight: var(--weight-bold);

    letter-spacing: 1px;
}


.home-service h3 {
    margin-bottom: var(--space-3);
}


.home-service p {
    margin-bottom: 0;
}


.home-section-button {
    margin-top: var(--space-7);

    text-align: center;
}


/* ==================================================
   20. SELLING PREVIEW
================================================== */

.home-selling {
    background: var(--cream);
}


.home-selling-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: var(--space-7);
}


.home-selling-content > div:first-child {
    flex: 1;
}


.home-selling-content > div:last-child {
    flex-shrink: 0;
}


.home-selling-content h2 {
    margin-bottom: var(--space-4);
}


.home-selling-content p {
    max-width: 700px;

    margin-bottom: 0;
}


/* ==================================================
   21. SERVICE AREA
================================================== */

.service-area {
    background: var(--white);

    padding:
        var(--space-7) 0;
}


.service-area .section-title {
    margin-bottom: 0;
}


/* ==================================================
   22. FINAL CTA
================================================== */

.home-final-cta,
.cta,
.cta-section {
    background: var(--charcoal);

    text-align: center;
}


.home-final-cta h2,
.cta h2,
.cta-section h2 {
    margin-bottom: var(--space-4);

    color: var(--white);
}


.home-final-cta p,
.cta p,
.cta-section p {
    max-width: 680px;

    margin:
        0 auto var(--space-6);

    color: rgba(255, 255, 255, 0.82);
}


.cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: var(--space-4);
}


/* ==================================================
   23. STANDARD PAGE HERO
================================================== */

.page-hero,
.page-header {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--charcoal);
}


.page-hero .hero-image,
.page-header .hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.page-hero .hero-overlay,
.page-header .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
        );

    z-index: 1;
}


.page-hero .hero-content,
.page-header .hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        var(--space-9) 0;
}


.page-hero h1,
.page-header h1 {
    max-width: 850px;

    margin-bottom: var(--space-4);

    color: var(--white);
}


.page-hero p,
.page-header p {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.88);
}


/* ==================================================
   24. SERVICES PAGE INTRO
================================================== */

.services-intro {
    background: var(--white);
}


.benefit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);
}


.benefit-grid .benefit-card {
    height: 100%;

    padding: var(--space-6);

    background: var(--off-white);

    border-radius: var(--radius-lg);

    border: 1px solid var(--light-gray);

    text-align: center;
}


.benefit-card h3 {
    margin-bottom: var(--space-3);

    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: var(--weight-semibold);
}


/* ==================================================
   25. PRICING / PACKAGES
================================================== */

.pricing-section {
    background: var(--off-white);
}


.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);

    align-items: stretch;
}


.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding: var(--space-7);

    background: var(--white);

    border:
        1px solid var(--light-gray);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.pricing-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--copper-light);
}


.pricing-card.featured,
.pricing-card.popular {
    border:
        2px solid var(--copper);
}


.pricing-header {
    text-align: center;

    margin-bottom: var(--space-5);
}


.pricing-header h3 {
    margin-bottom: var(--space-3);
}


.price {
    display: block;

    color: var(--copper);

    font-family: var(--font-heading);

    font-size: 2.5rem;

    font-weight: var(--weight-bold);

    line-height: 1.1;
}


.price-note {
    margin-top: var(--space-2);

    color: var(--text-muted);

    font-size: var(--text-sm);
}


.pricing-features {
    margin:
        var(--space-5) 0
        var(--space-6);
}


.pricing-features li {
    position: relative;

    padding-left: 28px;

    margin-bottom: var(--space-3);

    color: var(--text-muted);
}


.pricing-features li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--copper);

    font-weight: var(--weight-bold);
}


.pricing-card .btn-primary,
.pricing-card .btn-outline,
.pricing-card .button-small {
    width: 100%;

    margin-top: auto;
}


.popular-badge {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 18px;

    color: var(--white);

    background: var(--copper);

    border-radius: 50px;

    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);

    white-space: nowrap;
}


/* ==================================================
   26. PACKAGE ACTIONS
================================================== */

.package-action {
    margin-top: auto;

    padding-top: var(--space-5);
}


.package-action .btn-primary,
.package-action .btn-outline {
    width: 100%;
}


/* ==================================================
   27. INDIVIDUAL SERVICES
================================================== */

.individual-services {
    background: var(--white);
}


.services-grid,
.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);
}


.card,
.service-card {
    height: 100%;

    padding: var(--space-6);

    background: var(--white);

    border:
        1px solid var(--light-gray);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.card:hover,
.service-card:hover {
    transform: translateY(-5px);

    border-color: var(--copper-light);

    box-shadow: var(--shadow-md);
}


.card h3,
.service-card h3 {
    margin-bottom: var(--space-3);
}


.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: var(--space-5);

    color: var(--copper);

    background: var(--cream);

    border-radius: var(--radius-round);

    font-size: 24px;
}


/* ==================================================
   28. RENTAL READY
================================================== */

.rental-ready-section {
    background: var(--off-white);
}


.rental-ready-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: var(--space-5);
}


.rental-ready-card {
    height: 100%;

    padding: var(--space-6);

    background: var(--white);

    border-left:
        4px solid var(--copper);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}


.rental-ready-card h3 {
    margin-bottom: var(--space-3);
}


/* ==================================================
   29. PROMISE / WHY YOYO
================================================== */

.promise-section,
.why-section {
    background: var(--charcoal);
}


.promise-section .section-heading h2,
.why-section .section-heading h2 {
    color: var(--white);
}


.promise-section .section-heading p,
.why-section .section-heading p {
    color: rgba(255, 255, 255, 0.8);
}


.promise-grid,
.features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-5);
}


.promise-card,
.features > div {
    height: 100%;

    padding: var(--space-6);

    color: var(--white);

    background: rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: var(--radius-lg);
}


.promise-card h3,
.features h3 {
    margin-bottom: var(--space-3);

    color: var(--white);
}


.promise-card p,
.features p {
    color: rgba(255, 255, 255, 0.75);
}


/* ==================================================
   30. SPLIT SECTIONS
================================================== */

.split-section {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: var(--space-8);

    align-items: center;
}


.split-image img {
    width: 100%;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}


.split-content h2 {
    margin-bottom: var(--space-5);
}


/* ==================================================
   31. RESOURCE BOXES
================================================== */

.resource-box {
    padding: var(--space-6);

    margin-bottom: var(--space-5);

    background: var(--white);

    border-left:
        4px solid var(--copper);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}


.resource-box h3 {
    margin-bottom: var(--space-3);
}


.resource-box li {
    position: relative;

    padding-left: 25px;

    margin-bottom: var(--space-3);
}


.resource-box li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--copper);

    font-weight: var(--weight-bold);
}


/* ==================================================
   32. SERVICE AREA GRID
================================================== */

.service-area-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: var(--space-4);
}


.area-card {
    padding: var(--space-5);

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--light-gray);

    border-radius: var(--radius-md);

    font-weight: var(--weight-medium);
}


/* ==================================================
   33. FAQ
================================================== */

.faq-section {
    background: var(--off-white);
}


.faq-list {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;
}


.faq-item {
    overflow: hidden;

    margin-bottom: var(--space-4);

    background: var(--white);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}


.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: var(--space-5);

    border: 0;

    background: var(--white);

    color: var(--charcoal);

    font-family: var(--font-body);
    font-weight: var(--weight-semibold);

    text-align: left;
}


.faq-question:hover {
    color: var(--copper);
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding:
        0 var(--space-5);

    transition:
        max-height var(--transition-normal),
        padding var(--transition-normal);
}


.faq-item.active .faq-answer {
    max-height: 500px;

    padding-bottom: var(--space-5);
}


/* ==================================================
   34. CONTACT FORMS
================================================== */

.contact-form {
    padding: var(--space-7);

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}


.form-group {
    margin-bottom: var(--space-5);
}


.form-group label {
    display: block;

    margin-bottom: var(--space-2);

    color: var(--charcoal);

    font-weight: var(--weight-semibold);
}


.form-control {
    width: 100%;
    height: var(--input-height);

    padding:
        0 16px;

    color: var(--text-color);

    background: var(--white);

    border:
        1px solid var(--border-color);

    border-radius: var(--input-radius);

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


textarea.form-control {
    min-height: 160px;

    height: auto;

    padding-top: 15px;

    resize: vertical;
}


.form-control:focus {
    outline: none;

    border-color: var(--copper);

    box-shadow:
        0 0 0 3px rgba(184, 115, 51, 0.15);
}


.form-control.error {
    border-color: var(--error-color);
}


.form-error {
    display: block;

    margin-top: 6px;

    color: var(--error-color);

    font-size: var(--text-sm);
}


.form-success {
    padding: var(--space-5);

    margin-bottom: var(--space-5);

    background: #EAF5EA;

    border-left:
        4px solid var(--success-color);

    border-radius: var(--radius-md);

    color: var(--charcoal);
}


/* ==================================================
   35. BADGES
================================================== */

.badge {
    display: inline-block;

    padding: 6px 15px;

    color: var(--copper-dark);

    background: var(--cream);

    border-radius: 50px;

    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}


/* ==================================================
   36. IMAGE CARDS
================================================== */

.image-card {
    overflow: hidden;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}


.image-card img {
    width: 100%;
    height: 260px;

    object-fit: cover;
}


.image-card-content {
    padding: var(--space-6);
}


/* ==================================================
   37. CTA BOX
================================================== */

.cta-box {
    padding: var(--space-8);

    color: var(--white);

    background: var(--copper);

    border-radius: var(--radius-lg);

    text-align: center;
}


.cta-box h2,
.cta-box h3 {
    color: var(--white);
}


.cta-box p {
    color: rgba(255, 255, 255, 0.9);
}


.cta-box .btn-secondary {
    border-color: var(--white);
}


/* ==================================================
   38. FOOTER
================================================== */

.site-footer,
footer {
    background: #181818;

    padding:
        var(--space-8) 0 0;
}


.footer-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-7);
}


.footer-logo {
    width: 160px;

    margin-bottom: var(--space-4);
}


footer h3,
footer h4,
.site-footer h3,
.site-footer h4 {
    margin-bottom: var(--space-4);

    color: var(--white);
}


footer p,
.site-footer p {
    color: rgba(255, 255, 255, 0.7);
}


footer a,
.site-footer a {
    display: block;

    margin-bottom: var(--space-2);

    color: rgba(255, 255, 255, 0.7);
}


footer a:hover,
.site-footer a:hover {
    color: var(--copper-light);
}


.footer-bottom,
.copyright {
    margin-top: var(--space-7);

    padding:
        var(--space-4);

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    color:
        rgba(255, 255, 255, 0.5);

    text-align: center;
}


.copyright p {
    color: rgba(255, 255, 255, 0.5);
}


/* ==================================================
   39. FLOATING TEXT / SMS
================================================== */

.floating-text-button,
.floating-chat {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding:
        12px 20px;

    color: var(--white);

    background: var(--copper);

    border-radius: 50px;

    box-shadow: var(--shadow-md);

    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: var(--weight-semibold);

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}


.floating-text-button:hover,
.floating-chat:hover {
    color: var(--white);

    background: var(--copper-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);
}


.floating-chat-icon {
    font-size: 1.1rem;
    line-height: 1;
}


/* ==================================================
   40. BACK TO TOP
================================================== */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 84px;

    z-index: var(--z-dropdown);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: var(--radius-round);

    color: var(--white);

    background: var(--copper);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal),
        transform var(--transition-normal),
        background var(--transition-fast);
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--copper-dark);
}


/* ==================================================
   41. DOWNLOAD LINKS
================================================== */

.download-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--copper);

    font-weight: var(--weight-semibold);
}


.download-link:hover {
    color: var(--copper-dark);
}


/* ==================================================
   42. ALERTS
================================================== */

.alert {
    padding: var(--space-5);

    margin-bottom: var(--space-5);

    border-radius: var(--radius-md);
}


.alert-info {
    background: #F0F5F8;

    border-left:
        4px solid #4A90A4;
}


.alert-warning {
    background: #FFF6E5;

    border-left:
        4px solid var(--warning-color);
}


.alert-error {
    background: #FDECEC;

    border-left:
        4px solid var(--error-color);
}


/* ==================================================
   43. SMALL UTILITIES
================================================== */

.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-5 {
    margin-top: var(--space-5);
}


.mb-1 {
    margin-bottom: var(--space-1);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-3 {
    margin-bottom: var(--space-3);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-5 {
    margin-bottom: var(--space-5);
}


/* ==================================================
   44. PRINT
================================================== */

@media print {

    .site-header,
    .header-buttons,
    .mobile-menu-button,
    .floating-text-button,
    .floating-chat,
    .back-to-top {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}


/* ==================================================
   45. RESPONSIVE SAFETY
   These rules work with responsive.css
================================================== */

@media (max-width: 1100px) {

    .main-nav ul,
    nav ul {
        gap: var(--space-4);
    }

    .header-buttons {
        gap: var(--space-2);
        margin-left: var(--space-3);
    }

    .header-buttons .btn-primary,
    .header-buttons .btn-outline {
        padding:
            10px 16px;
    }

    .home-services-grid,
    .services-grid,
    .cards,
    .pricing-grid {
        gap: var(--space-4);
    }
}


@media (max-width: 900px) {

    .mobile-menu-button {
        display: flex;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        margin: 0;

        background: var(--white);

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul,
    nav ul {
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        padding:
            var(--space-3)
            5%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a,
    nav a {
        display: block;

        width: 100%;

        padding:
            13px 8px;
    }

    .main-nav a::after,
    nav a::after {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .site-header,
    header {
        height: var(--header-height);
    }

    .logo img {
        max-height: 60px;
    }

    .home-benefits-grid,
    .home-services-grid,
    .pricing-grid,
    .benefit-grid,
    .services-grid,
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .features,
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    section,
    .section {
        padding:
            var(--space-8) 0;
    }

    .container {
        width: 92%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding:
            var(--space-7) 0;
    }

    .hero p {
        font-size: var(--text-base);
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-outline {
        width: 100%;

        max-width: 340px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-contact-buttons {
        justify-content: center;
    }

    .home-benefits-grid,
    .home-services-grid,
    .pricing-grid,
    .benefit-grid,
    .services-grid,
    .cards,
    .features,
    .promise-grid,
    .rental-ready-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .home-selling-content {
        flex-direction: column;

        text-align: center;

        align-items: center;
    }

    .home-selling-content > div:last-child {
        width: 100%;
    }

    .home-selling-content .btn-primary {
        width: 100%;
        max-width: 320px;
    }

    .service-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero,
    .page-header {
        min-height: 400px;
    }

    .page-hero .hero-content,
    .page-header .hero-content {
        padding:
            var(--space-8) 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-logo {
        margin:
            0 auto var(--space-4);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-outline {
        width: 100%;

        max-width: 320px;
    }

    .contact-form {
        padding: var(--space-5);
    }
}


@media (max-width: 600px) {

    .logo img {
        max-width: 155px;
        max-height: 55px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-contact-buttons {
        flex-direction: column;

        align-items: center;

        gap: var(--space-3);
    }

    .service-area-grid {
        grid-template-columns: 1fr;
    }

    .floating-text-button,
    .floating-chat {
        right: 16px;
        bottom: 16px;

        padding:
            11px 16px;

        font-size: 0.9rem;
    }

    .back-to-top {
        right: 16px;
        bottom: 72px;
    }
}


@media (max-width: 480px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 580px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-highlights > div {
        padding: var(--space-3);
    }

    .home-benefit,
    .home-service,
    .pricing-card,
    .service-card,
    .card {
        padding: var(--space-5);
    }

    .page-hero,
    .page-header {
        min-height: 360px;
    }
}


/* ==================================================
   46. REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}