/* Additional CSS for multi-page elements */

/* Step Numbers */
.step-number {
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-content {
    flex: 1;
}

.step-details h3 {
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-details ul {
    list-style: none;
    padding: 0;
}

.step-details li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Area Features */
.area-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.area-features h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.area-features ul {
    list-style: none;
    padding: 0;
}

.area-features li {
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.area-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* Feature Icons */
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-details {
    margin-top: 1rem;
}

.feature-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-button {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #333;
}

/* Info Grids */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.info-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Privacy Policy */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: #000;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Team Members */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    gap: 3rem;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-photo {
    text-align: center;
}

.placeholder-photo {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.member-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-specialties h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.member-specialties ul {
    list-style: none;
    padding: 0;
}

.member-specialties li {
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.member-specialties li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #000;
}

/* Values and Network Grids */
.values-grid,
.network-grid,
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item,
.network-category,
.credential-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3,
.network-category h3,
.credential-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.value-item p,
.credential-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.network-category ul {
    list-style: none;
    padding: 0;
}

.network-category li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.network-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* Contact Image */
.contact-image-container {
    text-align: center;
    margin: 2rem 0;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Content */
.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.services-list ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.contact-cta > p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.contact-method p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Condos and Property Listings */
.condos-grid,
.rentals-grid,
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.condo-item,
.rental-item,
.property-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.condo-item:hover,
.rental-item:hover,
.property-item:hover {
    transform: translateY(-4px);
}

.condo-image,
.rental-image,
.property-image {
    position: relative;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 3rem;
    opacity: 0.7;
}

.property-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.condo-details,
.rental-details,
.property-details {
    padding: 1.5rem;
}

.condo-details h3,
.rental-details h3,
.property-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.property-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.condo-specs,
.rental-specs,
.property-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec {
    background: #f0f0f0;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
}

.condo-features,
.rental-pricing,
.property-features {
    margin-top: 1rem;
}

.condo-features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.rental-pricing {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-option {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.term {
    font-size: 0.8rem;
    color: #666;
}

.condo-price,
.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-top: 1rem;
}

.property-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature {
    background: #000;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Search Interface */
.search-interface {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field.full-width {
    grid-column: 1 / -1;
}

.search-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000;
}

.search-field select,
.search-field input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.search-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.search-button,
.reset-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button {
    background: #000;
    color: #fff;
}

.search-button:hover {
    background: #333;
}

.reset-button {
    background: #f0f0f0;
    color: #333;
}

.reset-button:hover {
    background: #ddd;
}

/* Status Indicators */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.status-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.status-indicator {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.status-indicator.online {
    background: #4CAF50;
    color: white;
}

/* Benefits and Features */
.benefits-grid,
.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item,
.financing-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit-item h3,
.financing-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.benefit-item p,
.financing-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Rental Categories */
.rental-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.category-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    color: #000;
}

/* Investment and Pricing */
.investment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.investment-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: #000;
}

.investment-info h3:first-child {
    margin-top: 0;
}

.investment-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rental-rates h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.rates-grid {
    display: grid;
    gap: 1rem;
}

.rate-item {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.rate-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.rate-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.pricing-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.pricing-table {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-align: center;
}

.price-grid {
    display: grid;
    gap: 0.8rem;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.property-type {
    font-size: 0.95rem;
    color: #333;
}

.price-range {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: right;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid,
    .faq-grid,
    .values-grid,
    .network-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}