/* Property Tracker Complete CSS - Fixed Version */

.tracker-header {
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 30px;
}

.tracker-header h1,
.tracker-header p,
.tracker-header i {
    color: white !important;
}

.tracker-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tracker-header p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Demo Banner */
.demo-banner {
    background: #FFF5F0;
    border: 1px solid #FFE5DB;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 103, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 103, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 103, 37, 0);
    }
}

.custom-marker {
    background-color: #ff6725;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.custom-marker.pulse {
    animation: pulse 2s infinite;
}

.demo-banner-icon {
    background: #ff6725;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-banner-icon i {
    color: white !important;
}

.demo-banner-content h5 {
    margin-bottom: 5px;
    color: #333;
}

.demo-banner-content p {
    margin-bottom: 0;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.how-it-works h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
}

.work-step {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.work-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    background: #ff6725;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
}

/* Property Cards */
.property-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

.property-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.property-card {
    border: 2px dashed #e0e0e0;
    background: #fafafa;
}

.property-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.property-info h5 {
    margin-bottom: 5px;
    color: #333;
}

.property-info .location {
    color: #666;
    font-size: 14px;
}

.property-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active {
    background: #fff3ed;
    color: #ff6725;
}

.status-badge.alert {
    background: #fff3ed;
    color: #c62828;
    animation: statusPulse 2s infinite;
}

.status-badge.success {
    background: #fff3ed;
    color: #ff6725;
}

.status-badge.warning {
    background: #fff3ed;
    color: #c62828;
}

.status-badge.error {
    background: #fee;
    color: #c00;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.unavailable {
    background: #e3e4e6;
    color: #495057;
}

@keyframes statusPulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.property-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    color: #ff6725;
    width: 16px;
}

.detail-item span {
    color: #666;
    font-size: 14px;
}

/* Map Modal */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100050; /* Higher than sidebar */
    padding: 20px;
    transition: backdrop-filter 0.3s ease;
}

.map-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 103, 37, 0.2);
    box-shadow: 0 8px 32px 0 rgba(255, 103, 37, 0.15), 0 20px 60px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.map-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 103, 37, 0.08) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 0;
}

.map-modal-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 103, 37, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.map-modal-header h4 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.close-modal {
    background: rgba(255, 103, 37, 0.1);
    border: none;
    font-size: 24px;
    color: #ff6725;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
    background: rgba(255, 103, 37, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.map-modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#propertyMap {
    width: 100%;
    height: 100%;
}

.map-instruction {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 103, 37, 0.95) 0%, rgba(255, 152, 82, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 103, 37, 0.4);
    transition: all 0.3s ease;
}

.map-instruction.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-instruction:not(.visible) {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

/* Property Form - FIXED */
.property-form,
#propertyForm {
    padding: 24px;
    border-top: 1px solid rgba(255, 103, 37, 0.1);
    display: none; /* Initially hidden */
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 10; /* Lower than loading overlay */
    overflow-y: auto;
}

.property-form::-webkit-scrollbar,
#propertyForm::-webkit-scrollbar {
    width: 8px;
}

.property-form::-webkit-scrollbar-track,
#propertyForm::-webkit-scrollbar-track {
    background: rgba(255, 103, 37, 0.05);
    border-radius: 4px;
}

.property-form::-webkit-scrollbar-thumb,
#propertyForm::-webkit-scrollbar-thumb {
    background: rgba(255, 103, 37, 0.3);
    border-radius: 4px;
}

.property-form::-webkit-scrollbar-thumb:hover,
#propertyForm::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 103, 37, 0.5);
}

/* Form Steps - FIXED */
.form-step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    display: none; /* Initially hidden */
}

.form-step.active,
#step1.active,
#step2.active {
    display: block !important;
}

.form-step h5 {
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.ec-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 103, 37, 0.2);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.ec-select:focus {
    border-color: rgba(255, 103, 37, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 103, 37, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 103, 37, 0.1);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: rgba(255, 103, 37, 0.08);
}

.detail-row label {
    font-weight: 500;
    color: #666;
    min-width: 120px;
}

.detail-row span {
    color: #333;
    font-weight: 400;
}

/* Button Styling - FIXED */
.btn-one,
.btn-two {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-one {
    background: #ff6725;
    color: white !important;
}

.btn-one:hover {
    background: #e55a1f;
    transform: translateY(-1px);
}

.btn-two {
    background: #f0f0f0;
    color: #666;
}

.btn-two:hover {
    background: #e0e0e0;
}

/* Add Property Button */
.add-property-btn {
    background: #ff6725;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.add-property-btn i {
    color: white !important;
}

.add-property-btn:hover {
    background: #e55a1f;
    transform: translateY(-2px);
}

/* Premium Membership CTA */
.membership-cta-premium {
    position: relative;
    background: linear-gradient(135deg, #2d1810 0%, #3d2418 50%, #4a1f12 100%);
    border-radius: 30px;
    padding: 60px 40px;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 103, 37, 0.4),
                0 0 0 1px rgba(255, 103, 37, 0.2);
}

.membership-cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 103, 37, 0.2) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.membership-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff8952 0%, #ff6725 100%);
    bottom: -100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6725 0%, #ff9f70 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.15; }
}

.membership-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 103, 37, 0.3) 0%, rgba(255, 159, 112, 0.3) 100%);
    border: 2px solid rgba(255, 103, 37, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: shimmer 3s ease-in-out infinite;
}

.cta-badge i {
    color: #ff8952;
    font-size: 14px;
    animation: sparkle 2s ease-in-out infinite;
}

.cta-badge span {
    color: #ffa976;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 103, 37, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 103, 37, 0.7); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.cta-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.cta-icon-bg {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6725 0%, #ff9f70 100%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

.cta-icon-wrapper i {
    position: relative;
    font-size: 60px;
    color: #ff8952;
    display: block;
    animation: crownFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(255, 103, 37, 0.6));
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.membership-cta-content h3 {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ffa976 50%, #ff6725 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 103, 37, 0.3);
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 103, 37, 0.08);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 103, 37, 0.3);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 103, 37, 0.15);
    border-color: rgba(255, 103, 37, 0.5);
    transform: translateX(5px);
}

.cta-feature i {
    color: #ff8952;
    font-size: 20px;
    flex-shrink: 0;
}

.cta-feature span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.cta-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6725 0%, #ff9f70 100%);
    color: #ffffff !important;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.5),
                0 0 40px rgba(255, 103, 37, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-btn-premium:hover::before {
    left: 100%;
}

.cta-btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 103, 37, 0.7),
                0 0 60px rgba(255, 103, 37, 0.6);
}

.cta-btn-premium span {
    position: relative;
    z-index: 1;
}

.cta-btn-premium i {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-btn-premium:hover i {
    transform: translateX(5px);
}

.cta-guarantee {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-guarantee i {
    color: #ff8952;
    font-size: 16px;
}

/* Mobile Responsive for Premium CTA */
@media (max-width: 768px) {
    .membership-cta-premium {
        padding: 40px 25px;
        border-radius: 20px;
        margin-top: 30px;
    }

    .membership-cta-content h3 {
        font-size: 28px;
    }

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

    .cta-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .cta-feature {
        padding: 12px 15px;
    }

    .cta-feature span {
        font-size: 14px;
    }

    .cta-icon-wrapper i {
        font-size: 50px;
    }

    .cta-btn-premium {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-circle-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -80px;
    }

    .cta-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -40px;
    }

    .cta-circle-3 {
        width: 100px;
        height: 100px;
    }
}

/* Old Membership CTA (kept for backwards compatibility) */
.membership-cta {
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-top: 30px;
}

.membership-cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.membership-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.membership-cta .btn-one {
    background: white !important;
    color: #ff6725 !important;
    padding: 12px 30px;
}

/* Alert History */
.alert-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon i {
    color: inherit !important;
}

.alert-icon.ownership {
    background: #fff3e0;
    color: #f57c00;
}

.alert-icon.ec {
    background: #fff3ed;
    color: #c62828;
}

.alert-icon.change {
    background: #fff3ed;
    color: #e55a1b;
}

.alert-icon.success {
    background: #fff3ed;
    color: #ff8f5c;
}

.alert-content {
    flex: 1;
}

.alert-content h6 {
    margin-bottom: 5px;
    color: #333;
}

.alert-content p {
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.alert-time {
    color: #999;
    font-size: 12px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state img {
    width: 200px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h5 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* Loading State - FIXED Z-INDEX */
.loading-overlay,
#mapLoader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* Fixed - lower than modal but higher than form */
}

.loading-spinner {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 103, 37, 0.15);
    border: 1px solid rgba(255, 103, 37, 0.1);
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #ff6725;
    border-color: #ff6725;
    border-right-color: transparent;
}

.loading-spinner p {
    color: #333;
}

/* Current Location Button */
.location-button,
#currentLocationBtn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 103, 37, 0.2) !important;
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.2) !important;
    transition: all 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    z-index: 1000 !important;
}

#currentLocationBtn:hover {
    background: #ff6725 !important;
    box-shadow: 0 6px 25px rgba(255, 103, 37, 0.4) !important;
    transform: translateY(-2px);
}

#currentLocationBtn:hover i {
    color: white !important;
}

/* Subdivision Modal Styles - ENHANCED */
.subdivision-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100800; /* Higher than map modal */
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.subdivision-modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    position: relative;
    top: 21%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subdivision-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.subdivision-modal-header h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.subdivision-modal-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.subdivision-modal-body {
    padding: 20px;
}

.subdivision-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.subdivision-info i {
    color: #ff6725;
}

.subdivision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

.subdivision-item {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 16px;
}

.subdivision-item:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.subdivision-item.selected {
    background: #ff6725;
    color: white;
    border-color: #ff6725;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.3);
}

.subdivision-modal-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.subdivision-cancel-btn,
.subdivision-confirm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
}

.subdivision-cancel-btn {
    background: #f0f0f0;
    color: #666;
}

.subdivision-cancel-btn:hover {
    background: #e0e0e0;
}

.subdivision-confirm-btn {
    background: #ff6725;
    color: white;
}

.subdivision-confirm-btn:hover {
    background: #e55a1f;
    transform: translateY(-1px);
}

.subdivision-confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Property Header */
.property-header {
    background: linear-gradient(135deg, #ff6725 0%, #ff8952 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 30px;
}

.property-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.property-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
}

.property-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.property-actions .btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    color: white;
}

.btn-check {
    background: white;
    color: #ff6725;
}

.btn-pause {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background: #c62828;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    font-size: 14px;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.info-item-icon {
    width: 40px;
    height: 40px;
    background: #FFF5F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6725;
    flex-shrink: 0;
}

.info-item-content {
    flex: 1;
}

.info-item-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.info-item-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #FFF5F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ff6725;
    font-size: 20px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.check-history {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.history-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.history-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.history-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.history-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.history-time {
    font-size: 12px;
    color: #999;
}

.ec-transactions {
    margin-top: 20px;
}

.transaction-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.transaction-type {
    font-weight: 500;
    color: #333;
}

.transaction-number {
    font-size: 12px;
    color: #666;
}

.transaction-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    font-size: 14px;
}

.transaction-detail {
    color: #666;
}

.alert-settings {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.alert-settings h5 {
    margin-bottom: 15px;
    color: #333;
}

.alert-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff6725;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.danger-zone {
    background: #fff3ed;
    border: 1px solid #ffd6c2;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.danger-zone h5 {
    color: #c62828;
    margin-bottom: 10px;
}

.danger-zone p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.error-details {
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.alert-info {
    background-color: #e8f4fd;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Property Cards Animation */
.property-card {
    animation: fadeIn 0.5s ease-out;
}

/* Modal Animations */
.map-modal {
    animation: fadeIn 0.3s ease-out;
}

.map-modal-content {
    animation: slideInUp 0.3s ease-out;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracker-header {
        padding: 20px;
    }

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

    .property-details-grid {
        grid-template-columns: 1fr;
    }

    .demo-banner {
        flex-direction: column;
        text-align: center;
    }

    .work-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .map-modal {
        padding: 10px;
    }

    .map-modal-content {
        height: 95vh;
        border-radius: 15px;
        margin: 10px;
    }

    .property-header {
        padding: 20px;
    }

    .property-meta {
        flex-direction: column;
        gap: 10px;
    }

    .property-actions {
        flex-direction: column;
        width: 100%;
    }

    .property-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .subdivision-modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .subdivision-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .property-form,
    #propertyForm {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .property-actions,
    .btn,
    .danger-zone {
        display: none !important;
    }

    .property-header {
        background: none !important;
        color: #333 !important;
        border: 1px solid #ddd;
    }

    .property-meta-item {
        background: none !important;
        border: 1px solid #ddd;
        color: #333 !important;
    }
}


/* Mobile-specific fixes for Property Tracker */

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Map Modal Mobile Fixes */
    .map-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .map-modal-content {
        height: 95vh;
        max-height: 95vh;
        border-radius: 15px;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .map-modal-header {
        padding: 20px 15px 15px 15px;
        flex-shrink: 0;
    }

    .map-modal-header h4 {
        font-size: 18px;
        margin: 0;
        line-height: 1.3;
    }

    /* Property Form Mobile Fixes */
    .property-form,
    #propertyForm {
        padding: 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Form Steps Mobile */
    .form-step {
        padding: 15px;
        border-radius: 8px;
    }

    .form-step h5 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #333;
        font-weight: 600;
    }

    /* Form Groups Mobile */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 500;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .ec-select {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border: 1px solid rgba(255, 103, 37, 0.2);
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Select dropdown arrow for mobile */
    .form-group select,
    .ec-select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }

    /* Property Details Grid Mobile */
    .property-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 0;
        padding: 15px;
        border-radius: 8px;
    }

    .detail-row {
        padding: 10px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 103, 37, 0.1);
    }

    .detail-row label {
        font-weight: 600;
        color: #666;
        min-width: auto;
        margin-bottom: 4px;
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .detail-row span {
        color: #333;
        font-weight: 500;
        font-size: 14px;
        display: block;
    }

    /* Button Styling Mobile */
    .btn-one,
    .btn-two {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
        width: 100%;
        margin-bottom: 10px;
        font-weight: 600;
        min-height: 48px; /* Better touch target */
    }

    /* Button Container Mobile */
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
        margin-top: 20px;
    }

    .d-flex.gap-3 .btn-one,
    .d-flex.gap-3 .btn-two {
        width: 100%;
        margin: 0;
    }

    /* Alert/Note Mobile */
    .alert {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 15px;
    }

    .alert i {
        margin-right: 8px;
    }

    /* Current Location Button Mobile */
    .location-button,
    #currentLocationBtn {
        top: 15px !important;
        right: 15px !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
    }

    /* Map Instruction Mobile */
    .map-instruction {
        bottom: 54px;
        left: 15px;
        right: 15px;
        transform: none;
        padding: 10px 20px;
        font-size: 14px;
        text-align: center;
        border-radius: 25px;
        transform: translateX(0) translateY(0) !important;
    }

    /* Loading Overlay Mobile */
    .loading-overlay,
    #mapLoader {
        border-radius: 15px;
    }

    .loading-spinner {
        padding: 25px 30px;
        margin: 20px;
        border-radius: 12px;
    }

    .loading-spinner p {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .loading-spinner .text-muted {
        font-size: 12px;
    }

    /* Subdivision Modal Mobile */
    .subdivision-modal-content {
        margin: 15px;
        width: calc(100% - 30px);
        top: 15%;
        max-height: 80vh;
        overflow: hidden;
        border-radius: 12px;
    }

    .subdivision-modal-header {
        padding: 15px;
    }

    .subdivision-modal-header h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .subdivision-modal-header p {
        font-size: 13px;
    }

    .subdivision-modal-body {
        padding: 15px;
        max-height: 50vh;
        overflow-y: auto;
    }

    .subdivision-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
        max-height: 40vh;
    }

    .subdivision-item {
        padding: 12px 8px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .subdivision-modal-footer {
        padding: 15px;
        gap: 8px;
    }

    .subdivision-cancel-btn,
    .subdivision-confirm-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 44px;
        flex: 1;
    }

    /* Property Cards Mobile Adjustments */
    .property-card {
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 12px;
    }

    .property-card-header {
        margin-bottom: 12px;
    }

    .property-info h5 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .property-info .location {
        font-size: 13px;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 15px;
    }

    .property-details {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .detail-item {
        gap: 6px;
    }

    .detail-item span {
        font-size: 13px;
    }

    /* Header Mobile */
    .tracker-header {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .tracker-header h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .tracker-header p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Demo Banner Mobile */
    .demo-banner {
        padding: 15px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .demo-banner-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .how-it-works h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .work-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 10px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-content h5 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .step-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Add Property Button Mobile */
    .add-property-btn {
        padding: 14px 25px;
        font-size: 15px;
        border-radius: 10px;
        margin: 15px auto;
        width: calc(100% - 30px);
        max-width: 300px;
    }

    /* Fix for very small screens */
    @media (max-width: 380px) {
        .map-modal {
            padding: 5px;
        }

        .map-modal-content {
            border-radius: 10px;
        }

        .property-form,
        #propertyForm {
            padding: 12px;
        }

        .form-group input,
        .form-group select,
        .ec-select {
            padding: 10px 12px;
            font-size: 16px;
        }

        .subdivision-grid {
            grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        }

        .btn-one,
        .btn-two {
            padding: 12px 16px;
            font-size: 15px;
        }
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .ec-select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        transform: scale(1);
        transition: none;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    .form-group select,
    .ec-select {
        background-size: 18px;
        background-position: right 10px center;
    }
}

/* Touch improvements for mobile */
@media (pointer: coarse) {
    .btn-one,
    .btn-two,
    .subdivision-item,
    .property-card {
        cursor: url(../dashboard/images/icon/pointer.svg), pointer !important;
    }

    .form-group input:focus,
    .form-group select:focus,
    .ec-select:focus {
        outline: none;
        border-color: #ff6725;
        box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
        transform: none;
    }
}

/* Search Box Styles for Property Tracker Modal */
.survey-map-search-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    width: calc(100% - 100px);
    max-width: 400px;
}

.survey-map-search-box {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    background: white;
}

.survey-map-search-box:focus {
    outline: 2px solid rgba(255, 103, 37, 0.5);
    box-shadow: 0 0 3px 3px rgba(255, 103, 37, 0.25);
}

.survey-map-search-box:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.survey-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1001;
}

.survey-search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: url(../dashboard/images/icon/pointer.svg), pointer !important;
}

.survey-search-result-item:hover {
    background-color: rgba(255, 103, 37, 0.1);
}

.survey-search-result-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 3px;
}

.survey-search-result-address {
    font-size: 12px;
    color: #777;
}

/* =====================================================
   Property Tracker Tool Page — Teal Theme (#e55a1b → #ff6725 → #ff8f5c), prefix: pt-
   ===================================================== */

.pt-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 32px 28px 22px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.pt-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.pt-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.pt-search-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.pt-search-hero-badge i { margin-right: 5px; }
.pt-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.pt-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.pt-search-hero-desc a {
    color: #ffd4c2;
    text-decoration: underline;
    font-weight: 500;
}
.pt-search-hero-desc a:hover { color: #fff; text-decoration: none; }
.pt-search-hero + .pt-content-card { border-radius: 0 0 20px 20px !important; }
.pt-content-card { padding: 24px; }

/* Feature overview cards */
.pt-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.pt-feature-card {
    background: #f0faf8;
    border: 1px solid #ffd6c2;
    border-radius: 14px;
    padding: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pt-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,92,0.10);
}
.pt-feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #e55a1b, #ff8f5c);
    color: #fff;
}
.pt-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.pt-feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Info sections */
.pt-info-section {
    margin-bottom: 24px;
}
.pt-info-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e55a1b;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff3ed;
}
.pt-info-section p, .pt-info-section li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.pt-info-section ul {
    padding-left: 18px;
}
.pt-info-section ul li {
    margin-bottom: 8px;
}

/* Monitoring items */
.pt-monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.pt-monitor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0faf8;
    border: 1px solid #fff3ed;
    border-radius: 10px;
    padding: 14px;
}
.pt-monitor-item i {
    font-size: 18px;
    color: #ff6725;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.pt-monitor-item span {
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

/* Early access form */
.pt-early-access {
    background: linear-gradient(135deg, #fff3ed 0%, #f0faf8 100%);
    border: 1px solid #ffd6c2;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.pt-early-access h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e55a1b;
    margin-bottom: 8px;
}
.pt-early-access p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.pt-early-access-group {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 10px;
}
.pt-early-access-group input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #ffd6c2;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.pt-early-access-group input:focus {
    border-color: #ff6725;
}

/* FAQ */
.pt-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.pt-faq-item.open { border-color: #ff6725; }
.pt-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}
.pt-faq-question i { transition: transform 0.3s; color: #ff6725; }
.pt-faq-item.open .pt-faq-question i { transform: rotate(180deg); }
.pt-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.pt-faq-item.open .pt-faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

/* Print for tool page */
@media print {
    .dashboard-side-menu, .dashboard-header, .pt-search-hero, .pt-content-card,
    .related-tool-card, #tool-article, .pt-faq-item, footer, nav, .breadcrumb { display: none !important; }
}

/* Mobile for tool page */
@media (max-width: 768px) {
    .pt-search-hero-title { font-size: 20px; }
    .pt-feature-grid { grid-template-columns: 1fr; }
    .pt-monitor-grid { grid-template-columns: 1fr; }
    .pt-early-access-group { flex-direction: column; }
}
@media (max-width: 576px) {
    .pt-search-hero { padding: 22px 18px 16px; }
    .pt-search-hero-title { font-size: 18px; }
}
