/* Home Services Demo Styles */

/* Demo Banner (reuse) */
.demo-banner {
    background: linear-gradient(135deg, #e11d48, #dc2626);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.demo-banner__text {
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-banner__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.demo-banner__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Home Services Color Palette */
:root {
    --home-primary: #d97706;
    --home-primary-light: #f59e0b;
    --home-secondary: #0f766e;
    --home-accent: #dc2626;
    --home-bg: #fefdf8;
    --home-white: #ffffff;
    --home-text: #1c1917;
    --home-text-light: #78716c;
    --home-border: #e7e5e4;
    --home-success: #15803d;
}

/* Container */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.home-header {
    background: var(--home-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 48px; /* Below demo banner */
    z-index: 999;
}

.home-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-nav__brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.home-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0;
    font-family: 'Georgia', serif;
}

.home-tagline {
    font-size: 1rem;
    color: var(--home-secondary);
    font-weight: 600;
}

.home-nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.home-nav__link {
    color: var(--home-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.home-nav__link:hover {
    color: var(--home-primary);
}

/* Buttons */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.home-btn--primary {
    background: var(--home-primary);
    color: white;
}

.home-btn--primary:hover {
    background: var(--home-primary-light);
    transform: translateY(-1px);
}

.home-btn--outline {
    background: transparent;
    color: var(--home-primary);
    border: 2px solid var(--home-primary);
}

.home-btn--outline:hover {
    background: var(--home-primary);
    color: white;
}

.home-btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.home-btn--full {
    width: 100%;
}

/* Hero Section */
.home-hero {
    background: linear-gradient(135deg, var(--home-bg) 0%, #fef3c7 100%);
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-hero__content {
    max-width: 500px;
}

.home-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.home-hero__subtitle {
    font-size: 1.2rem;
    color: var(--home-text-light);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.home-hero__features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.home-hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--home-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-hero__feature-icon {
    font-size: 1.2rem;
}

.home-hero__feature-text {
    font-weight: 600;
    color: var(--home-text);
    font-size: 0.9rem;
}

.home-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-hero__image {
    position: relative;
}

.home-hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Trust Bar */
.home-trust {
    background: var(--home-white);
    padding: 2rem 0;
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}

.home-trust__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.home-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.home-trust__icon {
    font-size: 1.5rem;
}

.home-trust__text {
    font-weight: 600;
    color: var(--home-text);
}

/* Services Section */
.home-services {
    padding: 5rem 0;
    background: var(--home-bg);
}

.home-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--home-primary);
    text-align: center;
    margin: 0 0 1rem 0;
    font-family: 'Georgia', serif;
}

.home-section__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--home-text-light);
    margin: 0 0 3rem 0;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.home-service {
    background: var(--home-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--home-primary);
}

.home-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.home-service__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.home-service__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0 0 1rem 0;
}

.home-service__description {
    color: var(--home-text-light);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.home-service__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.home-service__list li {
    padding: 0.25rem 0;
    color: var(--home-text);
    position: relative;
    padding-left: 1rem;
}

.home-service__list li::before {
    content: "✓";
    color: var(--home-success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.home-service__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--home-secondary);
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--home-bg);
    border-radius: 6px;
    text-align: center;
}

.home-service__link {
    color: var(--home-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.home-service__link:hover {
    color: var(--home-primary-light);
    text-decoration: underline;
}

/* Projects Section */
.home-projects {
    padding: 5rem 0;
    background: var(--home-white);
}

.home-projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.home-project {
    background: var(--home-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.home-project:hover {
    transform: translateY(-4px);
}

.home-project__image {
    height: 200px;
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-project__img-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.home-project__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.home-project:hover .home-project__overlay {
    opacity: 1;
}

.home-project__view {
    background: var(--home-white);
    color: var(--home-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.home-project__view:hover {
    transform: scale(1.05);
}

.home-project__content {
    padding: 1.5rem;
}

.home-project__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0 0 0.5rem 0;
}

.home-project__location {
    color: var(--home-secondary);
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.home-project__description {
    color: var(--home-text-light);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.home-project__details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--home-text-light);
}

.home-projects__cta {
    text-align: center;
    padding: 2rem;
    background: var(--home-bg);
    border-radius: 12px;
}

.home-projects__cta-text {
    font-size: 1.2rem;
    color: var(--home-text);
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

/* Process Section */
.home-process {
    padding: 5rem 0;
    background: var(--home-bg);
}

.home-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.home-step {
    text-align: center;
    padding: 2rem;
    background: var(--home-white);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.home-step__number {
    width: 60px;
    height: 60px;
    background: var(--home-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.home-step__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0 0 1rem 0;
}

.home-step__description {
    color: var(--home-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Quote Section */
.home-quote {
    padding: 5rem 0;
    background: var(--home-primary);
    color: white;
}

.home-quote .home-section__title {
    color: white;
}

.home-quote__subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

.home-quote__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.home-quote__form {
    background: var(--home-white);
    padding: 2rem;
    border-radius: 12px;
    color: var(--home-text);
}

.home-quote__info {
    color: white;
}

.home-quote__info-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    color: var(--home-bg);
}

.home-quote__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.home-quote__benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.home-quote__contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.home-quote__contact h4 {
    margin: 0 0 1rem 0;
    color: var(--home-bg);
}

.home-quote__phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.home-quote__phone:hover {
    color: var(--home-bg);
}

.home-quote__hours {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.home-quote__testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.home-quote__testimonial-text {
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.home-quote__testimonial-author {
    color: var(--home-bg);
    font-weight: 600;
    font-size: 0.9rem;
}

.home-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-form__group {
    margin-bottom: 1rem;
}

.home-form__input,
.home-form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--home-border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.home-form__input:focus,
.home-form__textarea:focus {
    outline: none;
    border-color: var(--home-primary);
}

.home-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.home-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.home-form__checkbox input {
    width: 1.2rem;
    height: 1.2rem;
}

.home-form__guarantee {
    text-align: center;
    margin: 1rem 0 0 0;
    color: var(--home-text-light);
}

/* Contact Section */
.home-contact {
    padding: 5rem 0;
    background: var(--home-bg);
}

.home-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.home-contact__item {
    margin-bottom: 2rem;
}

.home-contact__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--home-primary);
    margin: 0 0 0.5rem 0;
}

.home-contact__detail {
    color: var(--home-text);
    margin: 0;
    line-height: 1.5;
}

.home-contact__link {
    color: var(--home-primary);
    text-decoration: none;
    font-weight: 600;
}

.home-contact__link:hover {
    text-decoration: underline;
}

.home-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--home-border);
}

.home-contact__map {
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    border-radius: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.home-map-placeholder p:first-child {
    font-size: 3rem;
    margin: 0 0 1rem 0;
}

.home-map-placeholder p:last-child {
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.home-footer {
    background: var(--home-text);
    color: white;
    padding: 3rem 0 1rem 0;
}

.home-footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.home-footer__brand .home-logo {
    color: white;
    font-size: 1.5rem;
}

.home-footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 1rem 0;
}

.home-footer__licenses {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.home-license {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
}

.home-footer__heading {
    color: var(--home-primary-light);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.home-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.home-footer__link:hover {
    color: white;
}

.home-footer__area {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.home-footer__contact-item {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
}

.home-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.home-footer__demo {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.home-footer__demo-link {
    color: var(--home-primary-light);
    text-decoration: none;
    font-weight: 600;
}

.home-footer__demo-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-banner__content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .home-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .home-nav__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .home-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .home-hero__title {
        font-size: 2.5rem;
    }
    
    .home-hero__features {
        justify-content: center;
    }
    
    .home-hero__buttons {
        justify-content: center;
    }
    
    .home-trust__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .home-services__grid {
        grid-template-columns: 1fr;
    }
    
    .home-projects__grid {
        grid-template-columns: 1fr;
    }
    
    .home-process__steps {
        grid-template-columns: 1fr;
    }
    
    .home-quote__grid,
    .home-contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .home-form__row {
        grid-template-columns: 1fr;
    }
    
    .home-footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}