/* Mobile-First Responsive Design - ContractorFinder */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--white) !important;
    overflow-x: hidden;
}

:root {
    /* Color Palette - White base with orange/red/yellow accents */
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55A2B;
    --accent-red: #FF4757;
    --accent-yellow: #FFD93D;
    --accent-yellow-light: #FFF4CC;
    
    /* Neutrals */
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-medium: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    
    /* Status Colors */
    --success-color: #10B981;
    --error-color: #EF4444;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white) !important;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white) !important;
    width: 100%;
}

/* Header */
.header {
    background: var(--white) !important;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

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

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    background: var(--white);
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-yellow-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Hero Form */
.hero-form {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-input-wrapper {
    margin-bottom: 1rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: left;
}

.hero-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.hero-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background: var(--white);
}

.hero-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.hero-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.location-btn {
    padding: 1rem;
    background: var(--bg-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all 0.2s;
    flex-shrink: 0;
}

.location-btn:hover {
    background: var(--border-color);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.location-display {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--accent-yellow-light);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-dark);
    text-align: left;
}

.hero-cta-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.hero-cta-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.hero-cta-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Disclaimer Section - Desktop only changes */
@media (min-width: 1024px) {
    .disclaimer-section {
        width: 100%;
        background: var(--white);
        padding: 4rem 2rem;
        margin: 0 auto;
        max-width: 1200px;
    }
    
    .disclaimer-image-container {
        display: none;
    }
}

/* Mobile/Tablet disclaimer section styles remain */
.disclaimer-section {
    width: 100%;
    background: var(--white);
    padding: 1.5rem 1.5rem 2rem;
    margin: 0 auto;
    max-width: 600px;
}

.disclaimer-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0 0;
}

.disclaimer-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem;
    text-align: center;
}

.disclaimer-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto;
}

.disclaimer-text {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-medium);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.disclaimer-text p {
    margin-bottom: 0;
    text-align: center;
}

.disclaimer-text strong {
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Responsive styles for disclaimer section */
@media (min-width: 768px) {
    .disclaimer-section {
        padding: 1.5rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 1.5rem 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.8125rem;
    }
    
    .disclaimer-image-container {
        max-width: 80%;
        margin: 0 auto 1rem;
    }
    
    .disclaimer-image {
        height: 250px;
        object-fit: cover;
        object-position: center top;
    }
    
    .disclaimer-text {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    background: var(--white);
    display: none; /* Hidden by default, shown via JS */
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Forms */
.form {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background: var(--white);
    color: var(--text-dark);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0.75rem;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    text-decoration: underline;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary-orange-dark);
}

/* Checkbox */
.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

/* Contractor Card */
.contractor-section {
    padding: 2rem 0;
}

.contractor-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.contractor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-red) 50%, var(--accent-yellow) 100%);
}

.contractor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-yellow-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.contractor-badge svg {
    color: var(--success-color);
}

.contractor-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-area {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contractor-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.feature-item svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Success Screen */
.success-content {
    text-align: center;
    padding: 3rem 1.5rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white);
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.success-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-content p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.success-note {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-medium);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-medium);
    text-align: left;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Desktop footer padding to match why-choose-section */
@media (min-width: 1024px) {
    .footer {
        padding: 4rem 2rem 2.5rem;
    }
    
    .footer-disclaimer {
        padding-left: 0;
        padding-right: 0;
    }
}

.footer-find-pros {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.footer-cta-btn {
    padding: 1.125rem 2.5rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
    display: inline-block;
}

.footer-cta-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-cta-btn:active {
    transform: translateY(0);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-text {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: var(--text-light);
}

/* Error Messages */
.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

input.error,
textarea.error {
    border-color: var(--error-color);
}

/* Loading State */
.btn-loader {
    display: inline-block;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .header {
        padding: 1.25rem 2rem;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 2.5rem 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-form {
        padding: 1.25rem;
    }

    .hero-input-group {
        gap: 0.75rem;
    }

    .hero-input {
        font-size: 1.125rem;
        padding: 1.125rem 1.5rem;
    }

    .location-btn {
        padding: 1.125rem 1.25rem;
    }

    .hero-cta-btn {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
    }

    .main-content {
        padding: 3rem 2rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .form {
        padding: 2.5rem;
    }

    .contractor-card {
        padding: 2.5rem;
    }

    .contractor-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 3rem 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-form {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-section {
        display: none;
    }
}

/* ============================================
   NEW SECTIONS - PROJECT ALLIES STYLE
   ============================================ */

/* Dynamic Date Text in Hero */
.dynamic-date-text {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-medium);
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.dynamic-date-text span {
    font-weight: 600;
    color: var(--primary-orange);
}

/* Top Home Painting Projects Section */
.projects-section {
    width: 100%;
    background: var(--white);
    padding: 2.5rem 2rem 4rem;
    margin: 0 auto;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.projects-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.projects-subheading {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.project-image-container {
    width: 100%;
    height: 120px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-gray);
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 120px;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-price {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.price-icon {
    color: var(--text-medium);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.price-amount {
    color: var(--primary-orange);
    font-weight: 700;
}

.projects-cta-btn {
    padding: 1.125rem 2.5rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.projects-cta-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* How It Works Section */
.how-it-works-section {
    width: 100%;
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-main-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-main-subheading {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 1.5rem auto 1rem;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Brand Story Section */
.brand-story-section {
    width: 100%;
    background: var(--white);
    padding: 4rem 2rem;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.brand-story-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-story-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand-story-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.brand-story-cta-btn {
    padding: 1.125rem 2.5rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.brand-story-cta-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Why Choose Section */
.why-choose-section {
    width: 100%;
    background: var(--white);
    padding: 4rem 2rem;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
}

.why-choose-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.why-choose-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: left;
}

.why-choose-list {
    list-style: none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
}

.why-choose-list li {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    margin-left: 0 !important;
    padding-left: 0 !important;
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
    list-style: none !important;
}

.why-choose-item:last-child {
    margin-bottom: 0;
}

.checkmark-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    stroke-width: 2.5;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.why-choose-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.why-choose-bottom {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.why-choose-bottom-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-bottom-text .highlight-text {
    color: #0066CC;
    font-weight: 600;
}

/* Social Proof Section (within hero) */
.social-proof-container {
    width: 100%;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.social-proof-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.social-proof-savings {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.social-proof-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Sticky CTA Button */
.sticky-cta-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .projects-grid {
        max-width: 650px;
        padding: 0 1.5rem;
    }
    
    .projects-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset centering on tablet */
    .benefits-grid .benefit-card:nth-child(4),
    .benefits-grid .benefit-card:nth-child(5) {
        grid-column: span 1;
        grid-column-start: auto;
    }
}

@media (max-width: 768px) {
    .projects-section,
    .how-it-works-section,
    .brand-story-section,
    .why-choose-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-section {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .social-proof-container {
        margin-top: 1rem;
        padding-top: 2rem;
        padding-bottom: 0.25rem;
    }
    
    .social-proof-text {
        font-size: 1rem;
    }
    
    .social-proof-savings {
        font-size: 0.875rem;
    }
    
    .projects-heading,
    .section-main-heading {
        font-size: 1.75rem;
    }
    
    .projects-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .why-choose-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .why-choose-text {
        text-align: left;
    }
    
    .why-choose-image {
        min-height: 300px;
    }
    
    .why-choose-img {
        min-height: 300px;
    }
    
    .why-choose-bottom {
        padding: 1.5rem;
    }
    
    .why-choose-bottom-text {
        font-size: 1rem;
    }
    
    .sticky-cta-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .brand-story-content p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .projects-section,
    .how-it-works-section,
    .brand-story-section,
    .why-choose-section {
        padding: 1.5rem 1rem;
    }
    
    .hero-section {
        padding: 1rem 1rem 0.75rem;
    }
    
    .social-proof-container {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .social-proof-text {
        font-size: 0.9375rem;
    }
    
    .social-proof-savings {
        font-size: 0.8125rem;
    }
    
    .projects-heading,
    .section-main-heading {
        font-size: 1.5rem;
    }
    
    .why-choose-heading {
        font-size: 1.5rem;
    }
    
    .why-choose-content {
        padding: 1rem;
    }
    
    .why-choose-item {
        font-size: 1rem;
        margin-bottom: 1rem;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .why-choose-bottom {
        padding: 1.25rem;
    }
    
    .why-choose-bottom-text {
        font-size: 0.9375rem;
    }
    
    .project-card,
    .step-card,
    .benefit-card {
        padding: 1.5rem 1rem;
    }
}
