/**
 * Public styles - Rustic Forest & Premium Cabins Theme
 *
 * @package    Praderas_Charo_Lots
 * @subpackage Praderas_Charo_Lots/assets/css
 */

/* Container */
.pcl-lot-page {
    background:
        linear-gradient(180deg, rgba(61, 60, 59, 0.95) 0%, rgba(61, 60, 59, 0.98) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%233d3c3b" width="1200" height="800"/><path fill="%2395c120" opacity="0.08" d="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z"/><circle fill="%2395c120" opacity="0.05" cx="100" cy="100" r="80"/><circle fill="%23bccf7c" opacity="0.05" cx="900" cy="200" r="120"/><circle fill="%2395c120" opacity="0.05" cx="1100" cy="600" r="100"/></svg>');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

.pcl-lot-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(149, 193, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(188, 207, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pcl-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.pcl-header {
    text-align: center;
    color: #f8f8f6;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(149, 193, 32, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(149, 193, 32, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pcl-logo {
    margin-bottom: 20px;
}

.pcl-logo img {
    max-width: 200px;
    height: auto;
    max-height: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.pcl-header h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
    color: #f8f8f6;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
}

.pcl-address {
    font-size: 16px;
    margin: 10px 0;
    color: #bccf7c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pcl-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
    color: #bccf7c;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Lead Form Section */
.pcl-lead-form-section {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.pcl-form-card {
    background: linear-gradient(135deg, #f8f8f6 0%, #f8f8f6 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 3px solid #95c120;
    position: relative;
    overflow: hidden;
}

.pcl-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #95c120, #bccf7c, #95c120);
}

.pcl-form-card h2 {
    color: #3d3c3b;
    margin: 0 0 10px 0;
    font-size: 32px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(169, 169, 168, 0.2);
}

.pcl-form-card > p {
    color: #3d3c3b;
    margin: 0 0 30px 0;
    line-height: 1.7;
    font-size: 16px;
}

/* Inline Lead Form (within lot details) */
.pcl-lead-form-inline {
    margin: 40px 0;
    padding: 30px;
    background: rgba(149, 193, 32, 0.08);
    border-radius: 16px;
    border: 2px solid rgba(149, 193, 32, 0.3);
}

.pcl-lead-form-inline h3 {
    color: #3d3c3b;
    font-size: 28px;
    margin: 0 0 10px 0;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(169, 169, 168, 0.2);
}

.pcl-lead-form-inline > p {
    color: #3d3c3b;
    margin: 0 0 25px 0;
    line-height: 1.7;
    font-size: 16px;
}

/* Form */
.pcl-form-group {
    margin-bottom: 20px;
}

.pcl-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3d3c3b;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Georgia', serif;
}

.pcl-form-group .required {
    color: #95c120;
}

.pcl-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #a9a9a8;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    color: #3d3c3b;
}

.pcl-form-group input:focus {
    outline: none;
    border-color: #95c120;
    box-shadow: 0 0 0 3px rgba(149, 193, 32, 0.2);
    background: white;
}

/* Buttons */
.pcl-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    box-sizing: border-box;
    line-height: 1.4;
}

.pcl-btn-primary {
    background: linear-gradient(135deg, #95c120 0%, #7da319 100%);
    color: #f8f8f6;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    border: 2px solid #3d3c3b;
}

.pcl-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(149, 193, 32, 0.6);
    background: linear-gradient(135deg, #a3d12a 0%, #8ab020 100%);
}

.pcl-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #f8f8f6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    border: 2px solid #3d3c3b;
    width: 100%;
}

.pcl-btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ae071 0%, #16a08a 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #f8f8f6;
    text-decoration: none;
}

.pcl-privacy-note {
    margin: 20px 0 0 0;
    text-align: center;
    color: #a9a9a8;
    font-style: italic;
}

/* Lot Details */
.pcl-lot-details {
    background: linear-gradient(135deg, #f8f8f6 0%, #f8f8f6 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 3px solid #95c120;
    position: relative;
}

.pcl-lot-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #95c120, #bccf7c, #95c120);
}

.pcl-lot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #95c120;
}

.pcl-lot-header h2 {
    color: #3d3c3b;
    margin: 0;
    font-size: 36px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(169, 169, 168, 0.2);
}

.pcl-lot-badge {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 2px solid;
}

.pcl-lot-badge-disponible {
    background: linear-gradient(135deg, #95c120, #7da319);
    color: #f8f8f6;
    border-color: #3d3c3b;
}

.pcl-lot-badge-reservado {
    background: linear-gradient(135deg, #bccf7c, #a9a9a8);
    color: #3d3c3b;
    border-color: #3d3c3b;
}

.pcl-lot-badge-vendido {
    background: linear-gradient(135deg, #a9a9a8, #3d3c3b);
    color: #f8f8f6;
    border-color: #3d3c3b;
}

/* Info Grid */
.pcl-lot-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pcl-info-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid #95c120;
    border-right: 1px solid rgba(149, 193, 32, 0.2);
    border-top: 1px solid rgba(149, 193, 32, 0.2);
    border-bottom: 1px solid rgba(149, 193, 32, 0.2);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pcl-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 193, 32, 0.3);
}

.pcl-price-highlight {
    background: linear-gradient(135deg, rgba(149, 193, 32, 0.15) 0%, rgba(188, 207, 124, 0.15) 100%);
    border-left-color: #95c120;
    border-width: 5px;
}

.pcl-info-label {
    display: block;
    font-size: 14px;
    color: #3d3c3b;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.pcl-info-value {
    display: block;
    font-size: 22px;
    color: #3d3c3b;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.pcl-price {
    font-size: 32px;
    color: #95c120;
    text-shadow: 2px 2px 4px rgba(169, 169, 168, 0.2);
}

/* Payment Plans */
.pcl-payment-plans {
    margin: 40px 0;
    padding: 30px;
    background: rgba(149, 193, 32, 0.08);
    border-radius: 16px;
    border: 2px solid rgba(149, 193, 32, 0.3);
}

.pcl-payment-plans h3 {
    color: #3d3c3b;
    font-size: 32px;
    margin: 0 0 10px 0;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(169, 169, 168, 0.2);
}

.pcl-plans-subtitle {
    color: #95c120;
    margin: 0 0 30px 0;
    font-size: 17px;
    font-style: italic;
}

.pcl-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pcl-plan-card {
    background: linear-gradient(135deg, rgba(248, 248, 246, 0.95) 0%, rgba(248, 248, 246, 0.95) 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 3px solid #a9a9a8;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.pcl-plan-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(149, 193, 32, 0.4);
    border-color: #95c120;
}

.pcl-plan-featured {
    background: linear-gradient(135deg, rgba(149, 193, 32, 0.15) 0%, rgba(188, 207, 124, 0.15) 100%);
    border-color: #95c120;
    border-width: 4px;
    transform: scale(1.05);
}

.pcl-plan-featured:hover {
    transform: translateY(-8px) scale(1.08);
}

.pcl-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #95c120 0%, #7da319 100%);
    color: #f8f8f6;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #3d3c3b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.pcl-plan-card h4 {
    color: #3d3c3b;
    font-size: 22px;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.pcl-plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #95c120;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(169, 169, 168, 0.2);
    font-family: 'Georgia', serif;
}

.pcl-plan-period {
    color: #a9a9a8;
    font-size: 15px;
    margin: 0 0 15px 0;
    font-style: italic;
}

.pcl-plan-total {
    color: #3d3c3b;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding-top: 10px;
    border-top: 2px solid rgba(149, 193, 32, 0.3);
}

/* Location Section */
.pcl-location-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(149, 193, 32, 0.08);
    border-radius: 16px;
    border: 2px solid rgba(149, 193, 32, 0.3);
}

.pcl-location-section h3 {
    color: #3d3c3b;
    font-size: 28px;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(169, 169, 168, 0.2);
}

.pcl-location-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 3px solid #95c120;
}

/* Google Maps Container - Responsive */
.pcl-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 3px solid #95c120;
}

.pcl-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.pcl-google-maps-section {
    background: linear-gradient(135deg, rgba(149, 193, 32, 0.12) 0%, rgba(188, 207, 124, 0.12) 100%);
    border: 3px solid rgba(149, 193, 32, 0.4);
}

/* Actions */
.pcl-actions {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    align-items: stretch;
}

.pcl-actions .pcl-btn {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.4;
}

.pcl-actions button.pcl-btn,
.pcl-actions a.pcl-btn {
    margin: 0;
    vertical-align: middle;
}

/* Messages */
.pcl-message {
    margin: 20px 0;
    padding: 18px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pcl-message.success {
    background: linear-gradient(135deg, rgba(149, 193, 32, 0.15), rgba(188, 207, 124, 0.15));
    color: #3d3c3b;
    border-color: #95c120;
}

.pcl-message.error {
    background: linear-gradient(135deg, rgba(169, 169, 168, 0.15), rgba(61, 60, 59, 0.15));
    color: #3d3c3b;
    border-color: #a9a9a8;
}

.pcl-message.info {
    background: linear-gradient(135deg, rgba(188, 207, 124, 0.15), rgba(169, 169, 168, 0.15));
    color: #3d3c3b;
    border-color: #bccf7c;
}

/* Footer */
.pcl-footer {
    text-align: center;
    color: #f8f8f6;
    margin-top: 60px;
    padding: 30px 20px;
    background: rgba(149, 193, 32, 0.15);
    border-radius: 16px;
    border: 2px solid rgba(149, 193, 32, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pcl-footer p {
    margin: 10px 0;
    font-size: 16px;
}

.pcl-footer strong {
    color: #bccf7c;
    font-family: 'Georgia', serif;
    font-size: 18px;
}

.pcl-footer a {
    color: #bccf7c;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pcl-footer a:hover {
    color: #f8f8f6;
    text-shadow: 0 0 10px rgba(188, 207, 124, 0.5);
}

.pcl-credits {
    opacity: 0.85;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(248, 248, 246, 0.2);
}

/* Loading State */
.pcl-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button Loading State */
.pcl-btn-loading {
    opacity: 0.8;
    cursor: wait;
    position: relative;
}

.pcl-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner Animation */
.pcl-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(248, 248, 246, 0.3);
    border-top-color: #f8f8f6;
    border-radius: 50%;
    animation: pcl-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes pcl-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Large Desktops (1200px and up) - Default styles above */

/* Medium Desktops & Laptops (992px - 1199px) */
@media (max-width: 1199px) {
    .pcl-container {
        max-width: 960px;
    }

    .pcl-header h1 {
        font-size: 42px;
    }

    .pcl-subtitle {
        font-size: 18px;
    }

    .pcl-lot-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .pcl-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .pcl-container {
        max-width: 720px;
    }

    .pcl-lot-page {
        padding: 30px 20px;
    }

    .pcl-header h1 {
        font-size: 38px;
    }

    .pcl-subtitle {
        font-size: 17px;
    }

    .pcl-form-card,
    .pcl-lot-details {
        padding: 35px 25px;
    }

    .pcl-lot-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .pcl-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .pcl-plan-featured {
        transform: scale(1.02);
    }

    .pcl-payment-plans h3,
    .pcl-location-section h3 {
        font-size: 28px;
    }

    .pcl-actions {
        gap: 15px;
    }
}

/* Tablets Portrait & Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .pcl-lot-page {
        padding: 20px 15px;
        background-attachment: scroll;
    }

    .pcl-header {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .pcl-header h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .pcl-subtitle {
        font-size: 16px;
    }

    .pcl-form-card,
    .pcl-lot-details {
        padding: 25px 20px;
        border-width: 2px;
    }

    .pcl-form-card h2 {
        font-size: 24px;
    }

    .pcl-form-card > p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .pcl-lot-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .pcl-lot-header h2 {
        font-size: 28px;
    }

    .pcl-lot-badge {
        padding: 8px 20px;
        font-size: 12px;
    }

    .pcl-lot-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .pcl-info-item {
        padding: 20px;
    }

    .pcl-info-label {
        font-size: 13px;
    }

    .pcl-info-value {
        font-size: 20px;
    }

    .pcl-price {
        font-size: 28px;
    }

    .pcl-payment-plans,
    .pcl-location-section,
    .pcl-lead-form-inline {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .pcl-payment-plans h3,
    .pcl-location-section h3,
    .pcl-lead-form-inline h3 {
        font-size: 26px;
    }

    .pcl-map-container {
        padding-bottom: 75%; /* More square aspect ratio for mobile */
        border-width: 2px;
    }

    .pcl-plans-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .pcl-plans-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pcl-plan-card {
        padding: 30px 20px;
        border-width: 2px;
    }

    .pcl-plan-featured {
        transform: scale(1);
        border-width: 3px;
    }

    .pcl-plan-featured:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .pcl-plan-card h4 {
        font-size: 20px;
    }

    .pcl-plan-price {
        font-size: 32px;
    }

    .pcl-plan-period {
        font-size: 14px;
    }

    .pcl-plan-total {
        font-size: 13px;
    }

    .pcl-actions {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .pcl-actions .pcl-btn {
        padding: 15px 30px !important;
        font-size: 16px !important;
        width: 100% !important;
        flex: none !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-height: 56px;
        line-height: 1.4 !important;
    }

    .pcl-footer {
        padding: 25px 15px;
        margin-top: 40px;
    }

    .pcl-footer p {
        font-size: 15px;
    }

    .pcl-footer strong {
        font-size: 17px;
    }
}

/* Mobile Devices (480px - 575px) */
@media (max-width: 575px) {
    .pcl-lot-page {
        padding: 15px 10px;
    }

    .pcl-header {
        padding: 15px;
        margin-bottom: 25px;
    }

    .pcl-header h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .pcl-subtitle {
        font-size: 15px;
    }

    .pcl-form-card,
    .pcl-lot-details {
        padding: 20px 15px;
    }

    .pcl-form-card h2 {
        font-size: 22px;
    }

    .pcl-form-card > p {
        font-size: 14px;
        line-height: 1.6;
    }

    .pcl-form-group label {
        font-size: 14px;
    }

    .pcl-form-group input {
        padding: 12px 15px;
        font-size: 15px;
    }

    .pcl-lot-header h2 {
        font-size: 24px;
    }

    .pcl-lot-badge {
        padding: 7px 16px;
        font-size: 11px;
    }

    .pcl-info-item {
        padding: 18px 15px;
    }

    .pcl-info-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pcl-info-value {
        font-size: 18px;
    }

    .pcl-price {
        font-size: 24px;
    }

    .pcl-payment-plans,
    .pcl-location-section,
    .pcl-lead-form-inline {
        padding: 20px 15px;
    }

    .pcl-payment-plans h3,
    .pcl-location-section h3,
    .pcl-lead-form-inline h3 {
        font-size: 22px;
    }

    .pcl-map-container {
        padding-bottom: 80%;
        border-radius: 10px;
    }

    .pcl-plans-subtitle {
        font-size: 15px;
    }

    .pcl-plan-card {
        padding: 25px 15px;
    }

    .pcl-plan-badge {
        font-size: 12px;
        padding: 5px 15px;
    }

    .pcl-plan-card h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .pcl-plan-price {
        font-size: 28px;
    }

    .pcl-plan-period {
        font-size: 13px;
    }

    .pcl-plan-total {
        font-size: 12px;
    }

    .pcl-actions .pcl-btn {
        padding: 13px 25px !important;
        font-size: 15px !important;
        width: 100% !important;
        flex: none !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-height: 52px;
        line-height: 1.4 !important;
    }

    .pcl-privacy-note small {
        font-size: 12px;
    }

    .pcl-footer {
        padding: 20px 15px;
    }

    .pcl-footer p {
        font-size: 14px;
    }

    .pcl-footer strong {
        font-size: 16px;
    }

    .pcl-credits small {
        font-size: 12px;
    }
}

/* Small Mobile Devices (320px - 479px) */
@media (max-width: 479px) {
    .pcl-lot-page {
        padding: 10px 8px;
    }

    .pcl-header {
        padding: 12px 10px;
        margin-bottom: 20px;
    }

    .pcl-header h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .pcl-subtitle {
        font-size: 14px;
    }

    .pcl-form-card,
    .pcl-lot-details {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .pcl-form-card h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .pcl-form-card > p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .pcl-form-group {
        margin-bottom: 16px;
    }

    .pcl-form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .pcl-form-group input {
        padding: 11px 13px;
        font-size: 14px;
    }

    .pcl-lot-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .pcl-lot-header h2 {
        font-size: 21px;
    }

    .pcl-lot-badge {
        padding: 6px 14px;
        font-size: 10px;
    }

    .pcl-lot-info-grid {
        gap: 12px;
        margin-bottom: 25px;
    }

    .pcl-info-item {
        padding: 15px 12px;
        border-radius: 10px;
    }

    .pcl-info-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .pcl-info-value {
        font-size: 16px;
    }

    .pcl-price {
        font-size: 22px;
    }

    .pcl-payment-plans,
    .pcl-location-section,
    .pcl-lead-form-inline {
        padding: 18px 12px;
        margin: 25px 0;
    }

    .pcl-payment-plans h3,
    .pcl-location-section h3,
    .pcl-lead-form-inline h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .pcl-lead-form-inline > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .pcl-map-container {
        padding-bottom: 100%; /* Square on very small screens */
        border-width: 2px;
    }

    .pcl-plans-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .pcl-plans-grid {
        gap: 15px;
    }

    .pcl-plan-card {
        padding: 20px 12px;
    }

    .pcl-plan-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: -12px;
    }

    .pcl-plan-card h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .pcl-plan-price {
        font-size: 26px;
        margin: 10px 0;
    }

    .pcl-plan-period {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pcl-plan-total {
        font-size: 11px;
        padding-top: 8px;
    }

    .pcl-actions {
        gap: 12px;
        margin: 25px 0;
    }

    .pcl-actions .pcl-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 8px;
        width: 100% !important;
        flex: none !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-height: 50px;
        line-height: 1.4 !important;
    }

    .pcl-location-image {
        border-width: 2px;
        border-radius: 10px;
    }

    .pcl-privacy-note {
        margin-top: 15px;
    }

    .pcl-privacy-note small {
        font-size: 11px;
    }

    .pcl-footer {
        padding: 18px 12px;
        margin-top: 30px;
    }

    .pcl-footer p {
        font-size: 13px;
        margin: 8px 0;
    }

    .pcl-footer strong {
        font-size: 15px;
    }

    .pcl-credits {
        margin-top: 12px;
        padding-top: 12px;
    }

    .pcl-credits small {
        font-size: 11px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .pcl-lot-page {
        padding: 15px 20px;
    }

    .pcl-header {
        margin-bottom: 20px;
        padding: 12px 15px;
    }

    .pcl-header h1 {
        font-size: 24px;
    }

    .pcl-subtitle {
        font-size: 14px;
    }

    .pcl-form-card,
    .pcl-lot-details {
        padding: 20px;
    }

    .pcl-payment-plans,
    .pcl-location-section {
        margin: 20px 0;
        padding: 20px;
    }

    .pcl-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcl-lot-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcl-footer {
        margin-top: 30px;
        padding: 20px;
    }
}

/* High Resolution Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pcl-lot-page {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {
    .pcl-lot-page {
        background: white;
        padding: 20px;
    }

    .pcl-header,
    .pcl-form-card,
    .pcl-lot-details {
        border: 1px solid #3d3c3b;
        box-shadow: none;
    }

    .pcl-btn,
    .pcl-actions {
        display: none;
    }

    .pcl-footer {
        border-top: 1px solid #3d3c3b;
        page-break-after: avoid;
    }
}
