/* Property Introduction Template Styles */

/* Header Section */
.pxp-property-introduction-page .pxp-property-intro-header {
    margin-bottom: 2rem;
}

.pxp-hero-title {
    margin-top: 8rem;
}

.pxp-property-intro-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pxp-property-intro-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

/* Content Section */
.pxp-property-intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.pxp-property-intro-content h2,
.pxp-property-intro-content h3,
.pxp-property-intro-content h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pxp-property-intro-content p {
    margin-bottom: 1.5rem;
}

.pxp-property-intro-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* Features Section */
.pxp-property-intro-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.pxp-property-intro-features h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pxp-property-intro-features ul {
    list-style: none;
    padding: 0;
}

.pxp-property-intro-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 2rem;
}

.pxp-property-intro-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.pxp-property-intro-features li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.pxp-property-intro-gallery {
    margin-top: 2rem;
}

.pxp-property-intro-gallery h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pxp-property-intro-gallery-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.pxp-property-intro-gallery-content .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pxp-property-intro-gallery-content .gallery-item:hover {
    transform: translateY(-5px);
}

.pxp-property-intro-gallery-content .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
}

/* Contact Section */
.pxp-property-intro-contact {
    margin-top: 3rem;
}

.pxp-property-intro-contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pxp-property-intro-contact-card h4 {
    color: white;
    font-weight: 600;
}

.pxp-property-intro-contact-card p {
    opacity: 0.9;
}

.pxp-property-intro-contact-info a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 500;
}

.pxp-property-intro-contact-info a:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Contact Form Styling */
.pxp-property-intro-contact-card .wpcf7-form {
    text-align: left;
}

.pxp-property-intro-contact-card .wpcf7-form input,
.pxp-property-intro-contact-card .wpcf7-form textarea,
.pxp-property-intro-contact-card .wpcf7-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.pxp-property-intro-contact-card .wpcf7-form input[type="submit"] {
    background: #f1c40f;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pxp-property-intro-contact-card .wpcf7-form input[type="submit"]:hover {
    background: #f39c12;
}

/* Comments Section */
.pxp-property-intro-comments {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pxp-property-intro-header {
        text-align: left !important;
    }
    
    .pxp-property-intro-title {
        font-size: 2rem;
    }
    
    .pxp-property-intro-subtitle {
        font-size: 1rem;
    }
    
    .pxp-property-intro-features,
    .pxp-property-intro-contact-card {
        padding: 1.5rem;
    }
    
    .pxp-property-intro-gallery-content .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .pxp-property-intro-gallery-content .gallery {
        grid-template-columns: 1fr;
    }
    
    .pxp-property-intro-contact-card {
        padding: 1rem;
    }
}

